/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.75;
    color: #0a1628;
    background: #faf5eb;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 400;
}

blockquote {
    font-style: italic;
}

/* Hero Section */
.hero {
    background-color: #0a1628;
    color: #f0e8d8;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.emblem-seal {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 2px solid #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #c9a227;
    letter-spacing: 0.15em;
    position: relative;
}

.emblem-seal::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #faf5eb;
    margin: 1.5rem 0;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a227;
}

/* Gold Rules with Diamond Ornaments */
.gold-rule {
    border: none;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    margin: 2rem 0;
    position: relative;
    height: 1px;
}

.gold-rule::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #faf5eb;
    border: 1px solid #c9a227;
    transform: translateX(-50%) rotate(45deg);
}

/* Alternating Sections */
.info-section {
    width: 100%;
    padding: 4rem 2rem;
    margin: 0;
}

.info-section.dark {
    background-color: #0a1628;
    color: #f0e8d8;
}

.info-section.dark .gold-rule::after {
    background: #0a1628;
}

.info-section.light {
    background-color: #faf5eb;
    color: #0a1628;
}

.info-section.light .gold-rule::after {
    background: #faf5eb;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #c9a227;
}

.info-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* Testimonial */
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: inherit;
}

.testimonial-credit {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #c9a227;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .emblem-seal {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .emblem-seal::before {
        width: 70px;
        height: 70px;
    }

    .info-section {
        padding: 3rem 1.5rem;
    }

    .section-label {
        font-size: 0.8rem;
    }

    .info-section p {
        font-size: 0.95rem;
    }

    .testimonial-quote {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .info-section {
        padding: 2.5rem 1rem;
    }

    .gold-rule {
        margin: 1.5rem 0;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .info-section p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .hero {
        background: #0a1628;
        color: #f0e8d8;
    }

    .info-section.dark {
        background: #0a1628;
        color: #f0e8d8;
    }
}
