
:root {
    --primary-color: #3a6ea5;
    --secondary-color: #70b1e7;
    --dark-color: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: var(--dark-color);
}

.hero-header {
    position: relative;
    background-image: url('../images/resort1.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    margin-bottom: 0;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-bar {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    font-size: 0.95rem;
}

.contact-bar i {
    margin-right: 8px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.amenity-item {
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.owl-carousel .item {
    margin: 10px;
}

.owl-carousel .item img {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.owl-carousel .caption {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

@media (max-width: 768px) {
    .hero-header {
        padding: 100px 0 70px;
    }
    
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .owl-carousel .item img {
        height: 300px;
    }
    
    .contact-bar {
        text-align: center;
    }
    
    .contact-bar .col-md-4 {
        margin-bottom: 0.5rem;
    }
}
