/* Custom CSS for Banbas Resort */

:root {
    --primary-color: #134a39;
    --secondary-color: #1e6b54;
    --accent-color: #bf9b30;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark-color);
}

/* Page Header - Ensure white text on green backgrounds */
.page-header {
    color: white !important;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header p,
.page-header .lead {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ensure all green backgrounds have white text */
.bg-primary,
.bg-primary *,
[style*="background: linear-gradient"][style*="#134a39"],
[style*="background: linear-gradient"][style*="#1e6b54"] {
    color: white !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0f3a2e;
    border-color: #0f3a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(19, 74, 57, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #bf9b30;
    color: #bf9b30;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #bf9b30;
    border-color: #bf9b30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 155, 48, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Navigation - TAJ Hotels Style */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    background-color: transparent !important;
    box-shadow: none;
    
}

.navbar.scrolled {
    background-color: var(--primary-color) !important;
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 30px rgba(19, 74, 57, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Green navbar for non-home pages */
.navbar-green {
    background-color: var(--primary-color) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(19, 74, 57, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-green .navbar-brand,
.navbar-green .nav-link,
.navbar-green .navbar-toggler-icon {
    color: white !important;
}

.navbar-green .nav-link {
    text-shadow: none;
}

.navbar-green .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Initial transparent state */
.navbar-initial {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* Scrolled sticky state */
.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo/Brand styling */
.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0;
    margin-right: 0;
}

.navbar.scrolled .navbar-brand {
    color: white !important;
    text-shadow: none;
}

/* TAJ-style Navigation Links */
.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.2px;
    color: white !important;
    padding: 12px 24px !important;
    margin: 0 2px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    text-transform: uppercase;
}

/* Elegant underline effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-1px);
}

/* Scrolled state link colors */
.navbar.scrolled .navbar-nav .nav-link {
    color: white !important;
    text-shadow: none;
    font-size: 15px;
    font-weight: 500;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-1px);
}

/* Logo styles */
.navbar-logo {
    height: 45px;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Logo adapts to navbar state */
.navbar-initial .navbar-logo {
    filter: brightness(0) invert(1); /* White logo on transparent navbar */
}

.navbar.scrolled .navbar-logo {
    filter: brightness(0) invert(1); /* White logo on primary color navbar */
}

.navbar-initial .navbar-fallback {
    color: #0f3a2e !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-fallback {
    color: white !important;
    text-shadow: none;
}

/* Footer logo */
.footer-logo {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
}

/* Book a Stay Button - TAJ Hotels Style */
.book-stay-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37 !important;
    border-radius: 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.book-stay-btn:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Scrolled state */
.navbar.scrolled .book-stay-btn {
    background-color: white;
    border-color: white;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.navbar.scrolled .book-stay-btn:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Override default btn-primary styles */
.navbar .btn-primary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.8);
    color: #d4af37 !important;
}

.navbar.scrolled .btn-primary {
    background-color: white;
    border-color: white;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
    object-fit: cover;
}

/* No overlay - clean background */

/* Ensure content is above video */
.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero button styling for better visibility */
.hero .btn {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #134a39 0%, #1e6b54 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-section p,
.cta-section .lead {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #bf9b30;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Background Styles */
.bg-light-green {
    background-color: #f8faf9;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-pattern {
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* Resort Activities Section */
.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.activity-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

.activity-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 74, 57, 0.9), rgba(30, 107, 84, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-icon {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.activity-content {
    padding: 1.5rem;
    background: white;
    color: var(--dark-color);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.activity-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    color: var(--dark-color);
    flex-grow: 1;
    margin-right: 1rem;
}

.activity-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(19, 74, 57, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.activity-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}


.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-activity {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(19, 74, 57, 0.2);
    backdrop-filter: blur(10px);
}

.btn-activity:hover {
    background: linear-gradient(135deg, #0f3a2e, #196b54);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(19, 74, 57, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-activity-free {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: default;
}

.btn-activity-detail {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(19, 74, 57, 0.1);
}

.btn-activity-detail:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(19, 74, 57, 0.3);
    border-color: var(--primary-color);
}

.activity-features {
    display: flex;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(19, 74, 57, 0.1);
    color: var(--primary-color);
    padding: 0.25rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: help;
    transition: all 0.2s ease;
}

.feature-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Activities Section Styling */
.activities-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.activities-section .container {
    position: relative;
    z-index: 1;
}

.activities-section .section-title h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

/* Background variations */
.bg-light-green {
    background-color: #f8faf9;
    background-image: linear-gradient(135deg, #f8faf9 0%, #f0f4f2 100%);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay h5 {
    color: white;
    text-align: center;
    margin: 0;
}

/* Filter Buttons */
.filter-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Amenities */
.amenity-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    height: 100%;
    transition: all 0.3s ease;
}

/* Default state - green heading, black text */
.amenity-card h5 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.amenity-card p {
    color: #333;
    transition: color 0.3s ease;
}

/* Hover state - white text on green background */
.amenity-card:hover {
    background: var(--primary-color);
    color: white !important;
}

.amenity-card:hover h5,
.amenity-card:hover h6,
.amenity-card:hover p {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    color: white !important;
}

/* Room Details */
.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(19, 74, 57, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.floating-book-btn:hover {
    background-color: #0f3a2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(19, 74, 57, 0.5);
    color: white;
    text-decoration: none;
    animation: none;
}

.floating-book-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 74, 57, 0.3);
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hide floating button on mobile when it might interfere with navbar */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* Mobile navbar adjustments - TAJ Style */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.6rem;
    border-radius: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler:focus {
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Design - TAJ Style */
@media (max-width: 768px) {
    /* Activities responsive styling */
    .activity-card {
        margin-bottom: 2rem;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .activity-content {
        padding: 1rem;
    }
    
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .activity-title {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .activity-category {
        align-self: flex-start;
    }
    
    .activity-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .activity-features {
        justify-content: center;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    /* Mobile menu styling */
    .navbar-collapse {
        background: rgba(19, 74, 57, 0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(15px);
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        text-shadow: none;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 15px;
        font-weight: 500;
    }
    
    .navbar-nav .nav-link:hover {
        color: #d4af37 !important;
    }
    
    .book-stay-btn {
        margin-top: 1rem;
        text-align: center;
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: white !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Gallery Filter Buttons */
.gallery-filter-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 74, 57, 0.3);
    text-decoration: none;
}

.gallery-filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(19, 74, 57, 0.3);
}

/* Gallery Cards */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}