/* assets/css/theme.css */

:root {
    --primary-font: 'Garamond', 'Times New Roman', serif;
    --secondary-font: 'Helvetica Neue', 'Arial', sans-serif;
    --text-color: #3a3a3a;
    --background-light: #f9f9f9;
    --primary-color: #a38560; /* A sophisticated gold/brown */
    --white: #fff;
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
}

/* Override Bootstrap Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .nav-link {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Carousel */
#heroCarousel .carousel-item {
    height: 95vh; /* Full viewport height */
    min-height: 500px;
    background-color: #000;
}

#heroCarousel .carousel-item img, 
#heroCarousel .carousel-item video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    opacity: 0.7;
}

#heroCarousel .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

#heroCarousel .carousel-caption h1 {
    font-family: var(--primary-font);
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#heroCarousel .carousel-caption p {
    font-family: var(--secondary-font);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-theme {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-family: var(--secondary-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: #8e714e;
    border-color: #8e714e;
    color: var(--white);
    transform: translateY(-3px);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--primary-font);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    font-weight: 300;
    color: #777;
    margin-bottom: 4rem;
}

/* Suites Section Cards */
.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card-title {
    font-family: var(--primary-font);
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Modal */
.modal-title {
     font-family: var(--primary-font);
    font-weight: bold;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        height: 60vh;
    }
    #heroCarousel .carousel-caption h1 {
        font-size: 3rem;
    }
    #heroCarousel .carousel-caption p {
        font-size: 1.2rem;
    }
}

/* Detailed Footer */
.footer-detailed {
    background-color: #222 !important;
}

.footer-detailed h5 {
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    color: var(--primary-color);
}

.footer-detailed a {
    text-decoration: none;
    color: #ccc !important;
    transition: color 0.3s ease;
}

.footer-detailed a:hover {
    color: var(--white) !important;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; /* Aspect ratio */
    position: relative;
    height: 0;
    border-radius: 5px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
