/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f0f0f0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* ===== HEADER ===== */
header {
    background: #1a2535;
    color: #fff;
    padding: 0;
    border-bottom: 3px solid #e8491d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

header #branding h1 {
    font-size: 26px;
    letter-spacing: 1px;
}

header #branding h1 .highlight {
    color: #e8491d;
}

header nav ul {
    display: flex;
    gap: 5px;
}

header nav ul li a {
    color: #ccc;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

header nav ul li a:hover,
header nav ul li.current a {
    background: #e8491d;
    color: #fff;
}

/* ===== HERO SECTION ===== */
#showcase {
    min-height: 420px;
    background: url('../images/hero.jpg') no-repeat center center / cover;
    background-color: #1a2535;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

#showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

#showcase .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

#showcase h1 {
    font-size: 52px;
    margin-bottom: 14px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

#showcase p {
    font-size: 20px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: #e8491d;
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #c03a14;
}

/* ===== MAIN CONTENT ===== */
#main {
    padding: 40px 0;
}

#main h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a2535;
    border-left: 4px solid #e8491d;
    padding-left: 12px;
}

#main h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a2535;
}

#main p {
    margin-bottom: 12px;
    color: #555;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ===== CARDS ===== */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-body p {
    flex: 1;
    margin-bottom: 16px;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e8491d;
}

/* ===== ALERT ===== */
.alert {
    padding: 12px 16px;
    background: #4caf50;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

/* ===== ADDRESS BLOCK ===== */
.address-block {
    margin-top: 30px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.address-block h3 {
    margin-bottom: 12px;
    color: #1a2535;
}

.address-block p {
    color: #555;
    margin-bottom: 4px;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policy-content h2 {
    margin-bottom: 16px;
}

.policy-content h3 {
    margin: 24px 0 10px;
    color: #1a2535;
}

.policy-content p {
    margin-bottom: 14px;
    color: #555;
}

.policy-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 14px;
    color: #555;
}

.policy-content ul li {
    margin-bottom: 6px;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
    background: #1a2535;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.subscribe-section h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
    border: none;
    padding: 0;
}

.subscribe-section p {
    color: #ccc;
    margin-bottom: 20px;
}

.subscribe-form-inline {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form-inline input[type="email"] {
    padding: 11px 16px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    width: 300px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2535;
    color: #ccc;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    flex-wrap: wrap;
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
}

#cookie-banner a {
    color: #e8491d;
    text-decoration: underline;
}

#cookie-banner .btn-cookie {
    background: #e8491d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

#cookie-banner .btn-cookie:hover {
    background: #c03a14;
}

/* ===== FOOTER ===== */
footer {
    background: #1a2535;
    color: #aaa;
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
}

footer p {
    margin-bottom: 6px;
}

footer a {
    color: #e8491d;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    #showcase h1 {
        font-size: 32px;
    }

    #showcase p {
        font-size: 16px;
    }
}
