/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* Color Variables extracted from logo */
:root {
    --navy-blue: #0A2342;
    --navy-deep: #051527;
    --navy-mid: #0d2b52;
    --gold: #C99E47;
    --gold-light: #E4C77E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --shadow: 0 10px 30px rgba(10, 35, 66, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header & Nav */
header {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: inline-block;
}

.logo-container .logo {
    height: 92px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(10, 35, 66, 0.25));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-container:hover .logo {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 10px rgba(10, 35, 66, 0.35));
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--navy-blue);
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--navy-blue) 0%, var(--navy-mid) 100%);
    color: var(--white);
    text-align: center;
    padding: 140px 5% 0;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-bottom: 220px;
}

.hero-eyebrow {
    display: inline-block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 3.4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #E6ECF5;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
    border: 2px solid var(--gold);
}
.btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 22px;
    height: 34px;
    border: 2px solid var(--gold);
    border-radius: 14px;
}
.scroll-cue::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 16px; }
}

/* ===================== HISTORY ===================== */
.history-section {
    background: var(--white);
    text-align: center;
}
.history-text {
    max-width: 780px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.08rem;
    line-height: 1.9;
}
.history-text p + p {
    margin-top: 18px;
}
.history-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.stat {
    min-width: 160px;
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 6px;
}
.stat-label {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* ===================== CHOICE SECTION ===================== */
.choice-section {
    background: var(--light-bg);
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}
.choice-card {
    background: var(--white);
    border-radius: 14px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--gold);
}
.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,35,66,0.18);
}
.choice-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.choice-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--gold);
}
.choice-card h3 {
    color: var(--navy-blue);
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.choice-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 75px;
}

/* ===================== PHOTO PLACEHOLDER ===================== */
.photo-placeholder {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: 10px;
    background: repeating-linear-gradient(135deg, var(--navy-blue), var(--navy-blue) 12px, var(--navy-mid) 12px, var(--navy-mid) 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.photo-placeholder::before {
    content: '📷';
    position: absolute;
    font-size: 1.6rem;
    opacity: 0.5;
    top: 14px;
    left: 14px;
}
.photo-placeholder::after {
    content: attr(data-label);
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    background: rgba(5, 21, 39, 0.55);
    border: 1px dashed var(--gold-light);
    border-radius: 6px;
    max-width: 85%;
}

/* When the placeholder class is used on a real <img>, show the photo instead */
img.photo-placeholder {
    display: block;
    object-fit: cover;
    background: none;
}

/* ===================== GUIDES ===================== */
.guides-section {
    background: var(--white);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.guide-card {
    background: var(--light-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.guide-card:hover {
    transform: translateY(-6px);
}
.guide-card .photo-placeholder {
    border-radius: 0;
}
.guide-card-body {
    padding: 28px 26px 32px;
    text-align: center;
}
.guide-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.guide-role {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.guide-card p {
    color: #555;
    line-height: 1.7;
}

/* ===================== CERTIFICATION ===================== */
.certification-section {
    background: var(--navy-blue);
    text-align: center;
}
.cert-banner {
    max-width: 780px;
    margin: 0 auto 45px;
}
.cert-banner .cert-line1 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}
.cert-banner .cert-line2 {
    color: #D3D3D3;
    font-size: 1.05rem;
    line-height: 1.7;
}
.cert-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 760px;
    margin: 0 auto;
}
.cert-gallery .photo-placeholder {
    border: 2px solid var(--gold);
}

/* ===================== Contact Form ===================== */
.contact-section {
    background-color: var(--navy-deep);
    color: var(--white);
}
.contact-section h2 {
    color: var(--gold);
}
.contact-section p {
    color: var(--white);
}
#booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}
.submit-btn {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background-color: var(--navy-blue);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.form-contact-info {
    max-width: 600px;
    margin: 24px auto 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
}
.form-contact-info a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s;
}
.form-contact-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 28px 20px;
    background-color: #051527;
    color: var(--white);
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}
.footer-contact a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}
.footer-contact a:hover {
    color: var(--gold);
    text-decoration: underline;
}
.footer-copy {
    color: #B9C3D1;
    font-size: 0.85rem;
}

/* ===================== Scroll Reveal ===================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-content { padding-bottom: 260px; }
    .history-stats { gap: 30px; }
}
