/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #FFFFFF; /* White from palette */
    box-shadow: 0 2px 10px rgba(106, 107, 111, 0.15); /* Dim gray shadow */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(106, 107, 111, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 90px; /* Bigger default size */
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Smaller logo on scroll */
.header.scrolled .logo-img {
    height: 45px;
    max-width: 180px;
}

/* Fallback text logo styling (in case image fails to load) */
.nav-logo h2 {
    color: #2c5aa0;
    font-weight: 600;
    display: none; /* Hidden when logo image is present */
}

.nav-logo i {
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #6A6B6F; /* Dim gray from palette */
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #00C501; /* Lime green from palette */
}

.book-btn {
    background: #FA6E09; /* Pumpkin from palette */
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #FA6E09;
}

.book-btn:hover {
    background: #00C501; /* Lime green on hover */
    border-color: #00C501;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: #00C501; /* Lime green from palette */
    color: white;
    border: 2px solid #00C501;
}

.btn-primary:hover {
    background: #FA6E09; /* Pumpkin on hover */
    border-color: #FA6E09;
}

.btn-secondary {
    background: transparent;
    color: #FA6E09; /* Pumpkin from palette */
    border: 2px solid #FA6E09;
}

.btn-secondary:hover {
    background: #FA6E09;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 2rem;
    background: #FFFFFF; /* Clean white background from palette */
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #6A6B6F; /* Dim gray from palette */
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6A6B6F; /* Dim gray from palette */
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(250, 110, 9, 0.3); /* Pumpkin border */
    transition: opacity 0.5s ease-in-out, border-color 0.3s ease;
}

.hero-image img:hover {
    border-color: #00C501; /* Lime green border on hover */
}

.hero-image img.fade-out {
    opacity: 0;
}

.hero-image img.fade-in {
    opacity: 1;
}

.hero-image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 211, 200, 0.95); /* Timberwolf with transparency */
    border: 2px solid #FA6E09; /* Pumpkin border */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(250, 110, 9, 0.3); /* Pumpkin shadow */
}

.loader-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #D8D3C8; /* Timberwolf */
    border-top: 3px solid #00C501; /* Lime green */
    border-right: 3px solid #FA6E09; /* Pumpkin */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Rotation Indicator */
.hero-rotation-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(216, 211, 200, 0.9); /* Timberwolf */
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(250, 110, 9, 0.3); /* Pumpkin border */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #6A6B6F; /* Dim gray */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-rotation-indicator:hover {
    opacity: 1;
}

.indicator-dots {
    display: flex;
    gap: 4px;
}

.indicator-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6A6B6F; /* Dim gray */
    transition: all 0.3s ease;
}

.indicator-dots .dot.active {
    background: #00C501; /* Lime green */
    transform: scale(1.2);
}

.indicator-dots .dot.next {
    background: #FA6E09; /* Pumpkin */
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6A6B6F; /* Dim gray from palette */
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 0;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.feature-content {
    padding: 1.5rem;
}

.feature-card i {
    font-size: 2rem;
    color: #00C501;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin: 0 0 0.8rem 0;
    display: block;
}

.feature-card p {
    color: #6A6B6F;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    border: 2px dashed #dee2e6;
}

.scroll-indicator {
    text-align: center;
    margin-top: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.scroll-indicator i {
    color: #00C501;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(5px);
    }
}

/* Desktop Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 90, 160, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: rgba(44, 90, 160, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

.scroll-left {
    left: 20px;
}

.scroll-right {
    right: 20px;
}

/* Hide scroll buttons on mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

/* Page Header */
.page-header {
    background: #FA6E09; /* Pumpkin from palette */
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Rooms/Accommodations */
.featured-rooms,
.accommodations-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured-rooms h2,
.accommodations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.rooms-grid,
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card,
.accommodation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card:hover,
.accommodation-card:hover {
    transform: translateY(-5px);
}

.room-card img,
.accommodation-card .room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info,
.room-content {
    padding: 1.5rem;
}

.room-info h3,
.room-content h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
}

.guests {
    color: #666;
}

.room-image {
    position: relative;
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
}

.room-price span {
    font-size: 1.2rem;
    font-weight: 600;
}

.room-price small {
    display: block;
    font-size: 0.8rem;
}

.room-capacity,
.room-size {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.room-amenities {
    margin: 1.5rem 0;
}

.room-amenities h4 {
    margin-bottom: 1rem;
    color: #333;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
}

.amenity-tag i {
    color: #28a745;
    margin-right: 4px;
}

.room-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Gallery */
.gallery-section {
    padding: 4rem 0;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2c5aa0;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.8);
    color: white;
    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-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 1rem 0;
}

/* Special Offers */
.special-offers-preview,
.offers-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
}

.offer-header h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.offer-validity {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.offer-terms ul {
    list-style: none;
    padding-left: 0;
}

.offer-terms li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.offer-terms li:before {
    content: "•";
    color: #2c5aa0;
    margin-right: 0.5rem;
}

.offer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook { background: #3b5998; }
.social-link.instagram { background: #e4405f; }
.social-link.twitter { background: #1da1f2; }
.social-link.tripadvisor { background: #00af87; }

/* Forms */
.contact-form,
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group small {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Booking */
.booking-section {
    padding: 4rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.booking-summary {
    background: #2c5aa0;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.summary-row.subtotal {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.summary-row.total {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-row.discount {
    color: #28a745;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    color: #666;
}

.info-card li i {
    color: #2c5aa0;
    margin-right: 0.5rem;
    width: 20px;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-methods i {
    font-size: 2rem;
    color: #666;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    text-decoration: none;
}

.contact-option:hover {
    color: #1e3d6f;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.amenities-list ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.25rem;
}

.amenities-list ul li {
    color: #ccc;
    padding: 0.1rem 0;
    font-size: 0.9rem;
}

.whatsapp-contact {
    background: rgba(37, 211, 102, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #25d366;
    margin-top: 1rem;
}

.whatsapp-contact i {
    color: #25d366;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.location-info ul {
    margin: 0.5rem 0;
}

.location-info ul li {
    color: #ccc;
    padding: 0.25rem 0;
}

.booking-info p {
    color: #ccc;
    padding: 0.25rem 0;
    margin-bottom: 0.5rem;
}

.booking-info p i {
    color: #2c5aa0;
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    margin-top: 1rem;
}

.social-links h5 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.social-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2c5aa0;
    text-decoration: none;
}

.social-link i {
    margin-right: 0.5rem;
    width: 20px;
}

.social-link.whatsapp:hover {
    color: #25d366;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    color: #2c5aa0;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: 600;
}

.contact-info p {
    color: #ccc !important;
}

.contact-info p i {
    color: #2c5aa0;
    margin-right: 0.5rem;
    width: 20px;
}

.booking-info p {
    color: #ccc !important;
}

.booking-info p i {
    color: #2c5aa0;
    margin-right: 0.5rem;
    width: 20px;
}

.social-link {
    color: #ccc !important;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

.social-link:hover {
    color: #2c5aa0 !important;
    text-decoration: none;
}

.social-link.whatsapp:hover {
    color: #25d366 !important;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Smaller logo on mobile */
        max-width: 150px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .rooms-grid,
    .accommodations-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .room-actions {
        flex-direction: column;
    }

    .lightbox-prev,
    .lightbox-next {
        left: 10px;
        right: 10px;
        position: fixed;
        top: 50%;
    }

    .lightbox-next {
        right: 10px;
        left: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

@font-face {
    font-family: 'Linda Handwriting';
    src: url('../../Linda Handwriting.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.logo-text {
    font-family: 'Linda Handwriting', cursive;
    font-size: 3.2rem;
    color: #FA6E09;
    letter-spacing: 1px;
    margin-left: 5px;
}

