/* Custom Styles matching Figma */

:root {
    --teal-dark: #4b675d;
    --teal: #638d7e;
    --teal-light: #b9d8c8;
    --bg-light-green: #d1eadf;
    --text-dark: #1b2622;
    --footer-bg: #373c3f;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    padding-top: 70px;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-light {
    font-weight: 300;
}

.text-teal {
    color: rgba(161, 210, 186, 1) !important;
}

.bg-light-green {
    background-color: var(--bg-light-green) !important;
}

.bg-dark-teal {
    background-color: var(--teal-dark) !important;
}

.bg-divider-gradient {
    background: linear-gradient(135deg, #7da595 0%, #4b675d 100%) !important;
}

.bg-footer {
    background-color: var(--footer-bg) !important;
}

.section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.bg-booking-gradient {
    background: linear-gradient(135deg, #E8DED0 0%, #EAE1D4 16.67%, #ECE4D8 33.33%, #EEE6DB 50%, #F1E9DF 66.67%, #F3ECE3 83.33%, #F5EFE7 100%) !important;
}

section p.text-teal {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    opacity: 1 !important;
}

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

h2 {
    font-weight: 500 !important;
    font-style: normal;
    font-size: 48px !important;
    line-height: 1.2 !important;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(72, 101, 87, 1) !important;
    
}

h3 {
    font-weight: 500 !important;
    font-size: 32px !important;
    color: rgba(72, 101, 87, 1);
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    color: rgba(72, 101, 87, 1);
}

.brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    color: rgba(161, 210, 186, 1);
    margin-top: 2px;
}

/* Navbar */
.nav-link-custom {
    color: #4a5568 !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--teal) !important;
    font-weight: 600;
}

/* Buttons */
.btn-teal {
    background: linear-gradient(90deg, #80AF98 0%, #364940 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background: linear-gradient(90deg, #6d9682 0%, #2a3a33 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-dark-teal {
    background-color: var(--teal-dark);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark-teal:hover {
    background-color: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.hover-bg-white:hover {
    background-color: white !important;
}

.hover-text-teal:hover {
    color: var(--teal) !important;
    border-color: white !important;
}

.hover-transform:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: url('../images/8dd0b74dde2ea32e7bac7158773e88171c867588.jpg') center/cover no-repeat;
    position: relative;
    padding-bottom: 100px;
    /* Space for overlap */
}

.hero-section.beauty-hero {
    background: url('../images/9ebd978840f5590386fcb1da8e52fd6305116376.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 40, 36, 0.4), rgba(30, 40, 36, 0.6));
}

.text-shadow {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Overlap effect for Destination section */
.top-overlap {
    border-radius: 50px 50px 0 0;
    margin-top: -80px;
    /* overlaps hero */
    z-index: 10;
    padding-top: 80px;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
    .top-overlap {
        border-radius: 80px 80px 0 0;
        margin-top: -120px;
        padding-top: 100px;
    }
}

/* Service Cards */
.service-card-img {
    height: 400px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 992px) {
    .service-card-img {
        height: 480px;
    }
}

.service-card-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(100, 140, 125, 0.15) !important;
}

.bg-gradient-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(30, 40, 35, 0.9) 100%);
    padding: 2rem;
}

/* Our Work Gallery */
.gallery-item {
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.04);
}

/* Utilities */
.transition-all {
    transition: all 0.3s ease;
}

/* Forms override */
.form-control:focus,
.form-select:focus {
    background-color: white !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 0.25rem rgba(99, 141, 126, 0.25);
    color: var(--text-dark) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Booking Section Typography */
.booking-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500 !important;
    font-size: 36px !important;
    line-height: 40px !important;
    color: rgba(61, 61, 61, 1) !important;
    letter-spacing: 0px !important;
}

.booking-subheading {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    color: rgba(107, 107, 107, 1) !important;
    opacity: 1 !important;
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 991px) {
    .top-overlap {
        margin-top: -60px;
        padding-top: 60px;
        border-radius: 40px 40px 0 0;
    }
}

@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .row > * {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }
    
    h1.display-3 {
        font-size: 2.8rem !important;
    }
    
    h2 {
        font-size: 32px !important;
        line-height: 38px !important;
    }
    
    h3 {
        font-size: 26px !important;
    }
    
    .section-padding {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .hero-section {
        min-height: 75vh;
        padding-bottom: 60px;
        padding-top: 80px;
    }
    
    .service-card-img, .carousel-item img {
        height: 300px !important;
    }
    
    .card {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    h1.display-3 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    
    .btn {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        font-size: 1rem !important;
    }
}
/* Luxury Utility Classes */
.letter-spacing-1 { letter-spacing: 1px !important; }
.text-teal-dark { color: var(--teal-dark) !important; }
.font-serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }
.hover-bg-light:hover { background-color: #f8f9fa !important; }

.white-service-card { background: #ffffff; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.white-service-card:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeInUp 0.8s ease-out forwards; }
