/* ========== VARIABLES & RESET ========== */
:root {
    --blue: #1A3E6F;
    --blue-dark: #0F2A4A;
    --gold: #C4922E;
    --gold-light: #D4A84B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray: #ADB5BD;
    --gray-dark: #495057;
    --text: #343A40;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
    --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Open Sans', sans-serif;
    background: #fefefb;
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.3;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ========== UTILITY ========== */
.bg-light { background: var(--off-white); }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Open Sans', sans-serif;
}
.btn-primary {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(196,146,46,0.3);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-text { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.btn-text:hover { color: var(--blue); }

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 0.78rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.8rem;
}
.top-bar i { color: var(--gold); }
.top-bar .sep { color: rgba(255,255,255,0.3); }
.top-bar a { color: var(--gold-light); font-weight: 600; }

/* ========== HEADER ========== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 1.7rem;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 1rem;
}
.logo-area { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 50px; width: auto; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 1.1rem;
    line-height: 1.2;
}
.logo-text small {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gray-dark);
}
.main-nav ul { display: flex; list-style: none; gap: 1.5rem; }
.main-nav a {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--blue); border-bottom-color: var(--gold); }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero-magazine {
    background: linear-gradient(135deg, #1A3E6F, #0F2A4A);
    background-image: url('../images/photos/hero-magazine.avif');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,42,74,0.72);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}
.hero-magazine h1 { color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.hero-magazine p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ========== SPONSORED BANNER ========== */
.sponsored-banner {
    background: linear-gradient(135deg, #e8f0f8, #f0f4e8);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--gold);
}
.banner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.banner-text { flex: 2; }
.banner-text h2 { margin-bottom: 0.2rem; }
.banner-text h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem; }
.benefits-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.benefit-tag {
    background: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}
.banner-cta { flex: 1; text-align: center; }
.banner-cta p { font-size: 0.8rem; color: var(--gray-dark); margin-top: 0.5rem; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { color: var(--gray-dark); }

#news {
    padding-top: 2rem;
}
/* ========== NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-img { width: 100%; height: 180px; object-fit: cover; }
.news-body { padding: 1.3rem; }
.news-source {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.15rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.news-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.news-body h3 a { color: var(--blue); }
.news-body p { font-size: 0.85rem; color: var(--gray-dark); margin-bottom: 0.8rem; }

#iconic {
    padding-top: 2rem;
}
/* ========== ICONIC PLACES ========== */
.iconic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.iconic-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}
.iconic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.iconic-img { width: 100%; height: 160px; object-fit: cover; }
.iconic-body { padding: 1.2rem; text-align: center; }
.iconic-body h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.iconic-body p { font-size: 0.85rem; color: var(--gray-dark); margin: 0; }

/* ========== SEASONAL EVENTS ========== */
.season-section { padding: 4rem 0; }
.events-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.event-tag {
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}
.events-note { text-align: center; font-size: 0.9rem; color: var(--gray-dark); }

/* ========== TESTIMONIALS SPACING ========== */
section:has(.testimonial-grid) {
    padding-top: 2rem;
}
/* ========== TESTIMONIALS ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-role {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    font-style: italic;
}
.testimonial-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); margin-bottom: 0.5rem; }
.testimonial-card p { font-style: italic; margin-bottom: 0.8rem; }
.testimonial-card strong { color: var(--blue); font-style: normal; }

/* ========== CTA BAR ========== */
.cta-bar {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}
.cta-bar h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-bar p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 3rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.site-footer h4 {
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }
.footer-logo { height: 100px; width: auto; vertical-align: middle; margin-right: 0.3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
.footer-contact { margin-top: 0.5rem; }
.footer-contact a { color: var(--gold-light); font-weight: 600; }
.social-icons { display: flex; gap: 0.8rem; font-size: 1.2rem; }
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.social-icons a:hover { background: var(--gold); color: var(--blue-dark); }
.footer-bottom {
    text-align: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        border-top: 2px solid var(--gold);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0.8rem; }
    .banner-inner { flex-direction: column; text-align: center; }
    .iconic-grid { grid-template-columns: 1fr; }
    .logo-img { height: 38px; }
}

@media (min-width: 769px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
    .iconic-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}