/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --teal: #29e1e1;
    --dark-bg: #1e2124;
    --darker-bg: #16181a;
    --light-text: #f0f2f4;
    --mid-bg: #23262a;
    --accent-dark: #1a1d20;
}

body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--light-text);
    background-image: linear-gradient(145deg, var(--dark-bg), var(--accent-dark));
}

/* Navbar Styles */
.navbar {
    background-color: var(--darker-bg);
    box-shadow: 0 2px 15px rgba(41, 225, 225, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
}

.row {
    margin-bottom: var(--bs-gutter-y);
}

.navbar-brand {
    color: var(--teal) !important;
    font-weight: bold;
}

.dark-dropdown {
    background-color: var(--darker-bg);
    border: 1px solid var(--teal);
}

.dark-dropdown .dropdown-item {
    color: var(--light-text);
}

.dark-dropdown .dropdown-item:hover {
    background-color: var(--teal);
    color: var(--darker-bg);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--light-text);
    height: 70vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/cover-1.jpeg'); /* Replace with your image path */
    background-size: cover;
    background-position: center 95%;
    z-index: -1;
    opacity: 0.7;
}


.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--teal);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero .lead {
    color: var(--light-text);
    position: relative;
    z-index: 2;
}

/* Album Cards */
.album-card {
    background-color: var(--mid-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(41, 225, 225, 0.05);
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-info {
    padding: 20px;
}

.btn-teal {
    background-color: var(--teal);
    color: white;
    border: none;
}

.btn-teal:hover {
    background-color: #008888;
    color: white;
}

/* Modal Styles */
.modal-content {
    background-color: var(--darker-bg);
    color: var(--light-text);
}

.modal-header {
    border-bottom: 1px solid var(--teal);
}

.modal-footer {
    border-top: 1px solid var(--teal);
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    color: var(--teal);
    margin-bottom: 15px;
}

/* Booking Form Styles */
.booking-form {
    background-color: var(--mid-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(41, 225, 225, 0.07);
    border: 1px solid rgba(41, 225, 225, 0.08);
}

.form-control, .form-select {
    background-color: var(--accent-dark);
    border: 1px solid rgba(41, 225, 225, 0.15);
    color: var(--light-text);
}

.form-control:focus, .form-select:focus {
    background-color: var(--accent-dark);
    border-color: var(--teal);
    box-shadow: 0 0 0 0.25rem rgba(0, 180, 180, 0.25);
    color: var(--light-text);
}

.form-label {
    color: var(--teal);
}

.date-square {
    background-color: var(--darker-bg);
    aspect-ratio: 1;
    border-radius: 12px;
    color: var(--teal);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(41, 225, 225, 0.1);
}

.date-square:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(41, 225, 225, 0.15);
    border-color: rgba(41, 225, 225, 0.3);
    background-color: rgba(41, 225, 225, 0.05);
}

.date-square h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.date-square p {
    font-size: 1rem;
    color: var(--light-text);
}

.date-square small {
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--light-text);
}

.location-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
 

    position: relative;

}

.hero-content {
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}


.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--teal);
    margin: 1.5rem auto;
}

.hero-content .lead {
    font-size: 1.5rem;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--mid-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(41, 225, 225, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 8px 25px rgba(41, 225, 225, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
    display: block;
}

.feature-item span {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.hero-content h1,
.feature-item i {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Adjust specific text elements */
.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.btn {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
} 

.hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: white !important;
}

a {
    text-decoration: none;
}

.skeleton-text {
    height: 20px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    opacity: 0.7;
}

.nav-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 0 20px;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.album-card .image-container {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.album-card .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-details {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: inline-block;
    text-align: left;
}

.hero-highlights li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hero-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal);
}

     /* Add these styles to your existing CSS */
     .skeleton-card {
        opacity: 0.7;
    }
    
    .skeleton-image {
        height: 200px;
        background: linear-gradient(110deg, #181818 8%, #232323 18%, #1d1d1d 33%);
        background-size: 200% 100%;
        animation: 1.5s shine linear infinite;
    }
    
    .skeleton-text {
        height: 20px;
        margin: 10px 0;
        background: linear-gradient(110deg, #181818 8%, #222222 18%, #232323 33%);
        background-size: 200% 100%;
        animation: 1.5s shine linear infinite;
    }
    
    .skeleton-button {
        height: 40px;
        background: linear-gradient(110deg, #282828 8%, #353535 18%, #2b2b2b 33%);
        background-size: 200% 100%;
        animation: 1.5s shine linear infinite;
    }
    
    @keyframes shine {
        to {
            background-position-x: -200%;
        }
    }
    
    .social-icons {
        text-align: center;
    }
    
    .social-link {
        color: white;
        font-size: 1.5rem;
        margin: 0 10px;
        transition: color 0.3s ease;
    }
    
    .social-link:hover {
        color: #17a2b8;  /* or your teal brand color */
    }

/* Drawer styles */
.offcanvas {
    background-color: var(--bs-dark);
    color: white;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .nav-link {
    color: white;
    padding: 0.75rem 0;
}

.offcanvas .nav-link:hover {
    color: var(--bs-teal);
}

.offcanvas .offcanvas-title {
    color: white;
}

/* Hide the regular navbar on mobile */
@media (max-width: 991px) {
    #navbarNav {
        display: none !important;
    }
}

.dropdown-menu.dark-dropdown {
    background-color: var(--darker-bg);
    border: 1px solid var(--teal);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-menu.dark-dropdown .dropdown-item {
    color: var(--light-text);
    padding: 0.5rem 1rem;
}

.dropdown-menu.dark-dropdown .dropdown-item:hover {
    background-color: var(--teal);
    color: var(--darker-bg);
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

/* Update the dropdown hover behavior */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown:hover > .dropdown-menu {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.logo-image {
    margin-bottom: 6px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.price {
    font-size: 0.8rem;
}