/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f8f6f2;
    color: #1e2a3a;
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
    border-radius: 20px;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --navy: #1a2a40;
    --navy-light: #2c405a;
    --gold: #c9a87c;
    --gold-light: #e8d5b5;
    --gold-dark: #a8875e;
    --cream: #f8f6f2;
    --white: #ffffff;
    --dark: #1e2a3a;
    --gray: #5e6977;
    --light-gray: #e9e5dd;
    --shadow: 0 20px 50px rgba(26, 42, 64, 0.08);
    --shadow-hover: 0 30px 70px rgba(26, 42, 64, 0.14);
    --radius: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(26, 42, 64, 0.25);
}
.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 42, 64, 0.35);
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(201, 168, 124, 0.3);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ===== HEADER / NAV ===== */
header {
    background: #ffffff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 16px 0;
    border-bottom: 2px solid var(--gold);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--gold);
}
.logo i {
    margin-right: 8px;
    color: var(--gold);
    font-size: 1.6rem;
}
.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.nav-links li a {
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links li a i {
    font-size: 0.85rem;
    color: var(--gray);
}
.nav-links li a:hover,
.nav-links li a.active {
    background: var(--navy);
    color: #fff;
}
.nav-links li a:hover i,
.nav-links li a.active i {
    color: #fff;
}

/* ===== PAGE ===== */
.page {
    display: block;
    padding: 50px 0 70px;
    animation: fadeSlide 0.6s ease forwards;
}
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== AD PLACEHOLDER ===== */
.ad-box {
    background: #f0ece4;
    border: 1px dashed #c5bdb2;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    margin: 40px 0 28px;
    color: #6b655b;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-box .ad-label {
    background: #d5cdc0;
    padding: 4px 16px;
    border-radius: 30px;
    color: #3d3630;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* ===== HERO (HOME) ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0 10px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--dark);
}
.hero-content h1 .highlight {
    color: var(--gold);
    font-style: italic;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 50px 0 12px;
    text-align: center;
    color: var(--dark);
}
.section-title .gold {
    color: var(--gold);
}
.section-sub {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 40px;
}

/* ===== VLOG CARDS ===== */
.vlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.vlog-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 124, 0.08);
}
.vlog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.vlog-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}
.vlog-card .card-body {
    padding: 24px 26px 30px;
}
.vlog-card .card-body .badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.vlog-card .card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.vlog-card .card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.6;
}
.vlog-card .card-body .meta {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.vlog-card .card-body .meta i {
    color: var(--gold);
    margin-right: 4px;
}

/* ===== LONG CONTENT ===== */
.long-content {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid rgba(201, 168, 124, 0.08);
}
.long-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}
.long-content h2 .gold {
    color: var(--gold);
}
.long-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.long-content img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

/* ===== CONTACT ===== */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-info h2 .gold {
    color: var(--gold);
}
.contact-info p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}
.contact-info .detail {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    font-size: 1rem;
}
.contact-info .detail i {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info .social {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}
.contact-info .social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    transition: var(--transition);
}
.contact-info .social a:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-4px);
}
.contact-form {
    background: #ffffff;
    padding: 40px 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 168, 124, 0.08);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 18px;
}
.contact-form label {
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #faf8f5;
    margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form .btn-primary {
    width: 100%;
    text-align: center;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    background: #e9e5dd;
    border-radius: var(--radius);
    padding: 60px 20px;
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 20px;
    border: 2px dashed #c5bdb2;
}
.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: #dfd9d0;
    padding: 48px 0 30px;
    margin-top: 20px;
    border-top: 6px solid var(--gold);
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
footer .logo {
    color: #fff;
    font-size: 1.7rem;
}
footer .logo span {
    color: var(--gold);
}
footer .logo i {
    color: var(--gold);
}
footer p {
    font-size: 0.9rem;
    color: #bfb8ad;
}
footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}
footer .footer-links a {
    color: #dfd9d0;
    transition: var(--transition);
    font-size: 0.9rem;
}
footer .footer-links a:hover {
    color: var(--gold-light);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #eee;
    padding: 18px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 9999;
    border-top: 4px solid var(--gold);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
}
.cookie-banner p {
    max-width: 700px;
    text-align: center;
}
.cookie-banner a {
    color: var(--gold-light);
    text-decoration: underline;
}
.cookie-banner .btn-cookie {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 34px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-banner .btn-cookie:hover {
    background: var(--gold-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image img {
        height: 300px;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
    .contact-info .detail {
        justify-content: center;
    }
    .contact-info .social {
        justify-content: center;
    }
    .long-content {
        padding: 30px 24px;
    }
}
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    .nav-links li a {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .contact-form {
        padding: 28px 22px;
    }
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .nav-links li a {
        padding: 4px 10px;
        font-size: 0.78rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .vlog-card img {
        height: 180px;
    }
    .long-content img {
        height: 200px;
    }
}