@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-green: #2d5a27;
    --accent-gold: #c5a059;
    --bg-cream: #f9f7f2;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --box-yellow: #fdf6e3;
    --box-green: #f0f4ef;
    --divider-color: #d1d1d1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 18px;
}

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

p {
    margin-bottom: 24px;
    text-align: justify;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: 20px;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
    padding: 30px 0;
}

.hero-title span.highlight {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(255, 242, 0, 0.6);
    line-height: 1;
    margin: 10px 0;
}

.hero-title span.massive {
    font-size: 15rem;
    line-height: 0.8;
    margin: 20px 0;
    display: block;
    font-weight: 900;
    letter-spacing: -5px;
    background: linear-gradient(to bottom, var(--accent-gold), #f6ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hero-title span.massive {
        font-size: 8rem;
    }

    .hero-title span.highlight {
        font-size: 3.5rem;
    }
}

.hero-lead {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Subtitles */
.section-title {
    position: relative;
    font-size: 2.8rem;
    margin: 80px 0 40px;
    color: var(--primary-green);
    display: inline-block;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: 110%;
    height: 15px;
    background: var(--accent-gold);
    opacity: 0.2;
    z-index: -1;
    transform: rotate(-1deg);
}

.title-svg-path {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 80px;
    height: 80px;
    opacity: 0.4;
    z-index: -1;
}

/* Images */
.img-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
}

.img-full img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.img-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-style: italic;
}

.img-standard {
    width: 100%;
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-standard img {
    width: 100%;
    display: block;
}

/* Sapo */
.sapo {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-green);
    border-left: 4px solid var(--accent-gold);
    padding-left: 30px;
    margin: 60px 0;
    line-height: 1.6;
}

.data-box {
    background-color: var(--box-yellow);
    border-left: 5px solid var(--accent-gold);
    padding: 40px;
    margin: 60px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.data-box.green {
    background-color: var(--box-green);
    border-left-color: var(--primary-green);
}

.data-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.data-box ul {
    list-style: none;
}

.data-box li {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.data-box li::before {
    content: '•';
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Pull Quotes */
.pull-quote {
    width: 60%;
    padding: 30px;
    margin: 40px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-green);
    position: relative;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.pull-quote.left {
    float: left;
    margin-right: 40px;
    margin-left: -100px;
}

.pull-quote.right {
    float: right;
    margin-left: 40px;
    margin-right: -100px;
}

.pull-quote::after {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    opacity: 0.1;
    font-family: serif;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}

.divider span {
    height: 1px;
    background: var(--divider-color);
    flex: 1;
}

.divider-icon {
    margin: 0 20px;
    color: var(--primary-green);
    opacity: 0.5;
}

/* Authorship */
.author {
    margin-top: 100px;
    padding-top: 20px;
    border-top: 1px solid var(--divider-color);
    text-align: right;
    font-weight: 600;
    font-style: italic;
    color: var(--text-muted);
}

/* Clearfix */
.section::after {
    content: "";
    clear: both;
    display: table;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {

    .pull-quote.left,
    .pull-quote.right {
        float: none;
        width: 100%;
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .img-full img {
        height: 350px;
    }

    .container {
        padding: 0 25px;
    }
}