@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f7;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent-whatsapp: #25d366;
    --transition: all 0.3s ease;
    --font-heading: 'Marcellus', serif;
    --font-body: 'PT Serif', serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.burger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}

.nav-overlay.active {
    transform: translateY(0);
}

.nav-overlay ul {
    text-align: center;
}

.nav-overlay li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-overlay.active li {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay li:nth-child(1) { transition-delay: 0.2s; }
.nav-overlay li:nth-child(2) { transition-delay: 0.3s; }
.nav-overlay li:nth-child(3) { transition-delay: 0.4s; }
.nav-overlay li:nth-child(4) { transition-delay: 0.5s; }

.nav-overlay a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 10rem 0 4rem;
    background-color: var(--bg-secondary);
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    margin-top: 4rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Feature Blocks */
.section-padding {
    padding: 8rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-image img {
    border-radius: 4px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Instagram Section */
.instagram-section {
    background-color: var(--bg-secondary);
    text-align: center;
}

.instagram-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.05);
}

.btn-black {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Floating WhatsApp */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-whatsapp);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    font-weight: bold;
    font-size: 0.9rem;
}

.whatsapp-fab i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    font-size: 1.5rem;
}

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

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

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-grid.reverse {
        direction: ltr;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero {
        padding-top: 8rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .feature-content h2 {
        font-size: 2rem;
    }
    .nav-overlay a {
        font-size: 1.8rem;
    }
    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
    }
}
