/* Custom Styles for Sunkissed Oasis */

:root {
    --primary-color: hsl(20, 90%, 55%);
    --secondary-color: hsl(280, 70%, 45%);
    --accent-color: #06abff;
    --brand-blue: #06abff;
    --foreground-color: hsl(280, 60%, 20%);
    --background-color: hsl(0, 0%, 100%);
    --muted-color: hsl(200, 30%, 95%);
    --sand-color: hsl(40, 30%, 95%);
    --sunset-color: hsl(30, 95%, 60%);
    
    /* Bootstrap color overrides */
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--foreground-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Navbar */
.navbar-brand .logo-img {
    height: 64px;
    width: auto;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: white !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: hsl(20, 90%, 50%);
    border-color: hsl(20, 90%, 50%);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: hsl(280, 70%, 40%);
    border-color: hsl(280, 70%, 40%);
    color: white;
}

/* Cards */
.card {
    border: 2px solid var(--muted-color);
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Service Areas */
.service-area-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--background-color);
    border: 1px solid var(--muted-color);
    border-radius: 50px;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--foreground-color);
    font-weight: 500;
}

.service-area-badge:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 140, 0, 0.05);
    color: var(--foreground-color);
}

.service-area-badge i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    transition: transform 0.2s;
}

.service-area-badge:hover i {
    transform: scale(1.1);
}

.service-area-card {
    transition: all 0.3s;
    border: 2px solid var(--muted-color);
}

.service-area-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 0.5rem 1rem rgba(6, 171, 255, 0.15);
    transform: translateY(-5px);
}

.service-area-card:hover .bi-geo-alt-fill {
    color: var(--brand-blue) !important;
}

/* Trust Section */
.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonial-quote {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.star-rating {
    color: var(--sunset-color);
}

/* Why Choose Us */
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background-color: rgba(200, 220, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stats-box {
    aspect-ratio: 1;
    border-radius: 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.2) 0%, 
        rgba(138, 43, 226, 0.2) 50%, 
        rgba(0, 191, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, 
        hsl(280, 70%, 45%) 0%, 
        hsl(280, 70%, 35%) 50%, 
        hsl(20, 90%, 55%) 100%);
}

/* Footer */
footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color) !important;
}

footer {
    background-color: white !important;
    color: #212529 !important;
}

/* Palms Background for Sections - Full Width, No Repeat */
.palms-bg-alt {
    position: relative;
    background-image: url('/images/palms.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.palms-bg-alt > * {
    position: relative;
    z-index: 1;
}

/* Palms Background for First Content Section on Pages */
.palms-bg-first {
    position: relative;
    background-image: url('/images/palms.webp');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.palms-bg-first > * {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-brand .logo-img {
        height: 150px !important;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand .logo-img {
        height: 120px !important;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: calc(100vh - 80px);
        padding-top: 2rem;
    }
    
}

