:root {
    --gold: #C9A96E;
    --gold-dark: #a88a53;
    --cream: #FAF8F5;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #0000000D;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.italic {
    font-style: italic;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #C9A96E 0%, #e0c48a 50%, #C9A96E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.btn-whatsapp-small {
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-small:hover {
    background: var(--dark);
    color: white;
}

.nav-link-simple {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-right: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link-simple:hover {
    opacity: 1;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Static background state */
.hero:hover .hero-bg {
    transform: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h5 {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.8;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-5px);
}

.btn-secondary {
    border: 1px solid white;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #000;
}

/* Gallery Footer */
.gallery-footer {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

/* Sections General */
section {
    padding: 100px 0;
}

/* World Section */
.world-section {
    background: #fdfaf5;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

/* Gallery Preview */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.item-overlay p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-item {
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-item:hover {
    background: white;
    color: black;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.frame-decoration {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--gold);
    z-index: 1;
}

.about-text h2 {
    margin-bottom: 2.5rem;
    font-size: 3rem;
}

.bio-chapter {
    margin-bottom: 3rem;
}

.bio-chapter h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.bio-chapter p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.bio-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark);
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin: 2rem 0;
    line-height: 1.4;
}

.about-meta {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-val {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
}

.meta-key {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Final CTA */
.final-cta {
    background: var(--dark);
    color: white;
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 1rem;
    transition: shadow 0.3s, transform 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--gray);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--dark);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.footer-social a:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

/* WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-btns { flex-direction: column; padding: 0 20px; }
    .map-container { padding: 15px; }
    .map-stats { gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
}
