:root {
    --primary: #2E5D4B;
    --primary-light: #3A7D60;
    --accent: #C8A97E;
    --bg-cream: #FAF7F2;
    --bg-section: #F0F7F4;
    --text-dark: #2C2C2C;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --shadow: rgba(0,0,0,0.08);
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.bg-primary-custom { background-color: var(--primary) !important; }
.text-primary-custom { color: var(--primary) !important; }
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #bfa075;
    color: white;
    transform: translateY(-2px);
}

.navbar-custom {
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.navbar-custom.scrolled {
    background: rgba(46, 93, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600;
    padding: 20px 20px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-custom .nav-link:hover {
    color: white !important;
}

.logo-area {
    transition: transform 0.3s ease;
}
.navbar-brand:hover .logo-area {
    transform: scale(1.1) rotate(5deg);
}

.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 500px;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-slider .carousel, 
.hero-slider .carousel-inner, 
.hero-slider .carousel-item {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 6s ease;
}

.carousel-item.active .hero-bg {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 5%;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev, 
.hero-slider:hover .carousel-control-next {
    opacity: 0.5;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
    opacity: 1 !important;
}


/* Video Gallery */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.ratio:hover .play-overlay {
    background: rgba(0,0,0,0.3);
}
.ratio:hover .fa-play {
    opacity: 1 !important;
    transform: scale(1.1);
}
.transition-300 { transition: all 0.3s ease; }
.card-title:hover { color: var(--accent); transition: color 0.3s ease; }
.card-title { transition: color 0.3s ease; }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 10px;
    padding: 10px;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.2s ease;
    color: rgba(255,255,255,0.8) !important;
}

.dropdown-item:hover {
    background-color: var(--accent) !important;
    color: white !important;
    transform: translateX(5px);
}

/* Footer */
.footer-custom {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-custom h4, .footer-custom h5, .footer-custom h6 {
    color: white;
}

.footer-custom a:hover {
    color: var(--accent) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.smallest { font-size: 0.75rem; }

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.section-padding {
    padding: 80px 0;
}
.bg-section {
    background-color: var(--bg-section);
}
.text-primary-custom {
    color: var(--primary);
}
.bg-accent {
    background-color: var(--accent);
}
