/*
Theme Name: Recanto Aleff
Theme URI: https://recantoaleff.com.br
Author: Recanto Aleff
Description: Tema personalizado para Chacara de Eventos Recanto Aleff
Version: 1.0.0
Text Domain: recanto-aleff
*/

:root {
    --green-deep: #1a3a0e;
    --green-forest: #2d5016;
    --green-medium: #3a6b1c;
    --green-sage: #7a9e6e;
    --earth-warm: #8b7355;
    --gold-accent: #c4a35a;
    --cream: #faf7f2;
    --cream-dark: #f0ebe0;
    --text-body: #444;
    --text-light: #666;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-deep: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.3;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(26, 58, 14, 0.97);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-mark {
    width: 38px;
    height: 38px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold-accent);
    font-weight: 700;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-accent); }

.mobile-menu {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 26px;
    background: none;
    border: none;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.slide-content { max-width: 700px; }

.slide-content .slide-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slide-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.slide-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.slide img,
.slide .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a6b1c, #1a3a0e);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--gold-accent);
}

.prev { left: 30px; }
.next { right: 30px; }

.dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold-accent);
    width: 32px;
    border-radius: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

section { padding: 100px 0; text-align: center; }

.section-header { margin-bottom: 60px; }

.section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-accent);
    margin: 18px auto 0;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-weight: 300;
    font-size: 1.05rem;
}

#sobre { background: var(--cream); }

.about-content { max-width: 750px; margin: 0 auto; }

.about-content p {
    margin-bottom: 22px;
    font-size: 1.08rem;
    color: var(--text-body);
    font-weight: 300;
    line-height: 1.9;
}

.about-divider {
    width: 40px;
    height: 1px;
    background: var(--gold-accent);
    margin: 30px auto;
}

#galeria { background: var(--cream-dark); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a6b1c, #1a3a0e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-transform: uppercase;
}

.features-section { background: var(--cream); }

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; text-align: center; }

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-text h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
    margin: 15px auto 0;
}

.feature-text p {
    color: var(--text-body);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 420px;
    margin: 0 auto;
}

.feature-img {
    flex: 1;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.feature-img img { width: 100%; height: 100%; object-fit: cover; }

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: 100%;
}

.mini-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.mini-gallery img:hover { transform: scale(1.03); }

#localizacao { background: var(--cream-dark); }

.location-content { max-width: 700px; margin: 0 auto; }

.location-content p {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
}

.location-img {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-img img { width: 100%; height: 100%; object-fit: cover; }

footer {
    background: var(--green-deep);
    color: var(--white);
    padding: 70px 0 25px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-divider {
    width: 50px;
    height: 1px;
    background: var(--gold-accent);
    margin: 25px auto;
}

.footer-info p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--gold-accent) !important;
    margin: 12px 0 !important;
    letter-spacing: 1px !important;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    background: rgba(196,163,90,0.05);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

@media (max-width: 968px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26,58,14,0.98);
        flex-direction: column;
        padding: 30px 0;
        gap: 25px;
    }
    .nav-links.open { display: flex; }
    .mobile-menu { display: block; }
    .slide-content h2 { font-size: 2.2rem; }
    .slide-content p { font-size: 1rem; }
    .feature-block,
    .feature-block.reverse { flex-direction: column; gap: 30px; }
    .feature-img,
    .location-img { height: 280px; }
    .section-header h2 { font-size: 1.8rem; }
    section { padding: 60px 0; }
    .hero { height: 90vh; min-height: 500px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .slide-content h2 { font-size: 1.8rem; }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}