/* Global Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #1e1e1e;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-video {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Kenyan flag inspired tri-color overlay: red, black, green with subtle transparency */
    background: linear-gradient(
        to bottom,
        rgba(204, 0, 0, 0.55) 0%,      /* red */
        rgba(0, 0, 0, 0.65) 50%,        /* black */
        rgba(0, 88, 22, 0.55) 100%      /* green */
    );
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    width: 90%;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero button color tweaks (Kenyan palette) */
.hero-section .btn-primary {
    background-color: #cc0000; /* deep red */
    border-color: #cc0000;
}

.hero-section .btn-primary:hover {
    background-color: #a90000;
    border-color: #a90000;
}

.hero-section .btn-outline-light {
    color: #ffffff;
    border-color: #00aa44; /* green outline */
}

.hero-section .btn-outline-light:hover {
    background-color: #00aa44;
    border-color: #00aa44;
}

/* Room Cards */
.room-card {
    transition: var(--transition);
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-features .badge {
    padding: 8px 12px;
    font-weight: 500;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Amenities */
.amenity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.amenity-card img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-card:hover img {
    transform: scale(1.05);
}

/* Gallery */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Booking CTA */
.booking-cta {
    background: url('../../../southernblue/IMG_20250614_122453.jpg') center/cover no-repeat;
    min-height: 400px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26,115,232,0.9), rgba(52,168,83,0.9));
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background: transparent;
}

.btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px;
    margin: 10px;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Conference Facilities */
.conference-facilities {
    background-color: var(--light-color);
}

.conference-card {
    transition: var(--transition);
    background: white;
}

.conference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.conference-hero {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.conference-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.conference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.conference-features .badge {
    padding: 8px 12px;
    font-weight: 500;
}

.conference-amenities {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.conference-amenities i {
    color: var(--primary-color);
}

.conference-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.main-hall:hover .conference-overlay {
    padding-bottom: 4rem;
}

.conference-card .fa-check-circle {
    font-size: 0.9rem;
}

/* Luxury Bar Section */
.luxury-bar {
    position: relative;
    background: linear-gradient(to right, var(--dark-color) 60%, transparent);
}

.bar-content {
    position: relative;
    z-index: 2;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    display: block;
}

.bar-timing {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.bar-gallery img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.bar-image-main,
.bar-image-secondary {
    position: relative;
    overflow: hidden;
}

.bar-image-main img,
.bar-image-secondary img {
    transition: var(--transition);
}

.bar-image-main:hover img,
.bar-image-secondary:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.bar-image-main:hover .image-overlay,
.bar-image-secondary:hover .image-overlay {
    opacity: 1;
}

.bar-image-main .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.overlay-content {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-video {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .room-card img,
    .amenity-card img,
    .gallery-item img {
        height: 200px;
    }
    
    .booking-cta {
        min-height: 300px;
    }
    
    .conference-hero {
        height: 400px;
    }
    
    .conference-img {
        height: 200px;
    }
    
    .conference-overlay {
        padding: 1.5rem;
    }
    
    .bar-gallery img {
        height: 200px;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
} 