/* Import Animate.css for super cool animations */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* --- General Styling --- */
:root {
    --primary-color: #0d6efd;
    /* Bootstrap Primary */
    --secondary-color: #ffc107;
    /* Bootstrap Warning/Yellow */
    --dark-blue: #002244;
    --font-serif: 'Georgia', serif;
}

body,html {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5em;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* --- Navigation Bar --- */
.navbar {
    transition: background-color 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Make navbar background slightly opaque on scroll for better visibility */
.navbar.fixed-top {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color) !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    /* Lift effect on hover */
}

/* --- 1. Hero/Banner Section --- */
.hero-section {
    /* Use the image you provided as a background */
    background: url('./images/banner-2.jpeg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    /* Full viewport height */
    position: relative;
    padding-top: 70px;
    /* Space for fixed navbar */
}

/* Dark overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* 40% opacity black overlay */
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-amenity {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}

/* --- 2. About Section Image Placeholder (Styling) --- */
.about-image-placeholder {
    height: 350px;
    background-color: #eee;
    background-image: url('./images/about-2.jpeg');
    /* Replace with a good interior photo */
    background-size: cover;
    background-position: center;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image-placeholder:hover {
    transform: scale(1.02);
}


/* --- Custom Button Hover Effects --- */
/* Primary Button */
.custom-btn-hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-blue);
    font-weight: bold;
    transition: all 0.3s ease;
}

.custom-btn-hover:hover {
    background-color: #ffda6a;
    border-color: #ffda6a;
    transform: scale(1.05);
    /* Zoom effect */
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

/* Outline Button */
.custom-btn-hover-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.custom-btn-hover-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* CTA Button */
.custom-btn-hover-cta {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    /* Attention-grabbing animation */
    transition: transform 0.3s ease;
}

.custom-btn-hover-cta:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* --- 3. Services and 6. Testimonial Card Hover Effect --- */
.service-card,
.testimonial-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.custom-hover-effect:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
    /* Lift effect */
    border-color: var(--primary-color);
}

.testimonial-box {
    max-width: 800px;
    background-color: white;
}

/* --- 4. CTA Background --- */
.cta-background {
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-blue) 100%);
}

/* --- 5. Gallery Section Hover Effect (Zoom) --- */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.custom-hover-zoom:hover img {
    transform: scale(1.1);
    /* Smooth zoom-in on hover */
}

/* --- 7. Contact Section --- */
.contact-section {
    background-color: var(--dark-blue);
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    /* Ensures the iframe fills the container and is responsive */
    display: block;
}

/* --- 8. Footer Section --- */
.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
}

/* --- Animation Classes (Bootstrap Scrollspy and Animate.css) --- */
/* You would use an Intersection Observer API in JS for more advanced scroll-based animations,
   but for simplicity, we use the Animate.css classes directly in the HTML. */