/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --dark-color: #2C2C2C;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in iOS */
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.7), rgba(44, 44, 44, 0.7)),
                url('hero.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Contact Information */
.hero-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-contact-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.hero-contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.hero-contact-link:hover {
    color: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Restaurant Section */
.restaurant-section {
    background: var(--light-color);
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.restaurant-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurant-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.restaurant-text p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.restaurant-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0.5rem;
    align-items: start;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.restaurant-hours {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    align-self: start;
}

.restaurant-hours h4 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hours-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.hours-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Activities & Attractions Section */
.activities-section {
    background: linear-gradient(135deg, #f8f6f3, #f0ede8);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.activity-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.activity-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.activity-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Special Offers Section */
.offers-section {
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.offer-card {
    background: linear-gradient(135deg, #fff, #f8f6f3);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.offer-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.offer-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.offer-features li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.offer-button {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.offer-button:hover {
    background: #6B3410;
    border-color: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Accommodation Section */
.accommodation-section {
    background: var(--white);
}

.accommodation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.accommodation-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accommodation-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.accommodation-text p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Events & Services Section */
.events-section {
    background: linear-gradient(135deg, #fdfbf7, #f5f0e8);
}

.events-section .section-title {
    color: var(--primary-color);
}

.events-section .section-subtitle {
    color: #555555;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 1.8rem;
    align-items: stretch;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.event-card:hover::before {
    opacity: 1;
    transform: translate(-10px, 10px);
}

.event-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.event-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.event-text {
    color: #555555;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.event-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem 0;
}

.event-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    color: #555555;
    font-size: 0.97rem;
}

.event-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.event-cta {
    margin-top: auto;
}

.event-button {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(139, 69, 19, 0.35);
}

.event-button:hover {
    background: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.45);
}

.event-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.event-button-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.events-highlight {
    margin-top: 3rem;
    padding: 1.8rem 2rem;
    border-radius: 14px;
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.events-highlight p {
    margin: 0;
    color: #555555;
    max-width: 720px;
}

.events-highlight-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--secondary-color);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.events-highlight-button:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Events responsive layout */
@media (max-width: 968px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .event-card {
        padding: 1.6rem 1.4rem;
    }

    .event-media {
        max-height: 220px;
    }
}

.event-media {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.event-content {
    display: flex;
    flex-direction: column;
}

.booking-info {
    background: var(--light-color);
    padding: 1.2rem;
    border-radius: 10px;
    margin-top: 0;
}

.booking-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.booking-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.booking-button {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-button:hover {
    background: #6B3410;
    transform: translateY(-2px);
}

.booking-button-secondary {
    background: var(--secondary-color);
}

.booking-button-secondary:hover {
    background: #B8941F;
}

.booking-button-direct {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.booking-button-direct:hover {
    background: #6B3410;
}

/* Booking Form */
.booking-form-container {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-submit-button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.booking-submit-button:hover {
    background: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.booking-submit-button:active {
    transform: translateY(0);
}

.booking-divider {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.booking-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.booking-divider span {
    background: var(--light-color);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}


/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed #ccc;
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder small {
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-color);
}

/* Phone CTA - Prominent Call to Action */
.phone-cta {
    margin-top: 40px;
    text-align: center;
    padding: 20px 0;
}

.phone-cta-prominent {
    margin-top: 50px;
    margin-bottom: 20px;
}

.phone-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #A0522D 100%);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.phone-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.phone-cta-button:hover::before {
    left: 100%;
}

.phone-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #A0522D 0%, var(--primary-color) 100%);
}

.phone-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.phone-cta-large {
    padding: 22px 45px;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.5);
}

.phone-cta-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.phone-cta-large .phone-cta-icon {
    font-size: 1.8rem;
}

.phone-cta-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-cta-text strong {
    font-size: 1.1em;
    letter-spacing: 1px;
}

.phone-cta-large .phone-cta-text strong {
    font-size: 1.15em;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-phone-link {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone-link:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Ensure gallery images are always visible - no overlays blocking */
.gallery-item {
    position: relative;
}

.gallery-item img {
    position: relative;
    z-index: 10;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: var(--light-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    height: 300px;
    opacity: 1 !important; /* Always visible */
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    position: relative;
    z-index: 10;
    opacity: 1 !important; /* Always visible - override parent opacity */
    visibility: visible !important;
}

/* Ensure images are visible even if parent has opacity 0 */
.gallery-item[style*="opacity: 0"] img,
.gallery-item[style*="opacity:0"] img,
.gallery-item img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Override any inline styles that might hide images */
.gallery-item[style] img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

/* Zoom icon overlay */
.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    display: none; /* Hidden by default, only show on hover for desktop */
}

.gallery-item:hover::after {
    opacity: 1;
    display: block; /* Only show on hover for desktop */
}


.gallery-placeholder {
    height: 300px;
    border: none;
}

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

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-item:first-child {
    margin-top: 0;
}

.contact-form-container {
    width: 100%;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

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

.social-link {
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.submit-button {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-button:hover {
    background: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .social-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-link:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* WhatsApp Link in Contact Section */
.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
    color: #20BA5A;
    background: rgba(37, 211, 102, 0.15);
    transform: translateX(5px);
}

.whatsapp-link svg {
    fill: #25D366;
    transition: var(--transition);
}

.whatsapp-link:hover svg {
    fill: #20BA5A;
    transform: scale(1.1);
}

/* Map Container */
.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* Form Validation Styles */
.form-group {
    position: relative;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

.form-group .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-group input:invalid:not(:placeholder-shown) ~ .error-message,
.form-group textarea:invalid:not(:placeholder-shown) ~ .error-message {
    display: block;
}

/* Success Message */
.form-success {
    display: none;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: 5px;
    margin-top: 1rem;
    border: 1px solid #c3e6cb;
}

.form-success.show {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
    cursor: zoom-out;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    cursor: zoom-in;
    user-select: none;
    opacity: 0;
    animation: imageFadeIn 0.4s ease forwards;
    transform-origin: center center;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content.zoomed {
    cursor: grab;
}

.modal-content.zoomed:active {
    cursor: grabbing;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* Zoom controls */
.modal-zoom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2001;
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.zoom-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* Booking Modal */
.modal-content-booking {
    background: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

.modal-content-booking h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modal-content-booking .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-dark);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-content-booking .modal-close:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */

/* Tablet and below */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-link {
        padding: 1rem;
        display: block;
        font-size: 1.1rem;
    }

    /* Fix background-attachment on mobile for performance */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        height: auto;
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .hero-contact {
        gap: 15px;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-contact-item {
        padding: 10px 16px;
    }

    .hero-contact-link {
        font-size: 0.9rem;
    }

    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .restaurant-content,
    .accommodation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .restaurant-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .contact-info {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
        display: block;
    }

    .contact-item:first-child {
        margin-top: 0;
    }

    .contact-form-container {
        order: 2;
        width: 100%;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .booking-info {
        padding: 1.5rem;
    }

    .booking-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .booking-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
        margin-top: 10vh;
    }

    .modal-content-booking {
        width: 95%;
        padding: 1.5rem;
        margin: 5% auto;
        max-height: 90vh;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0.8rem 12px;
    }

    .logo {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .hero {
        padding: 80px 15px 50px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 10px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        min-width: auto;
    }

    .hero-contact {
        flex-direction: column;
        gap: 12px;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-contact-item {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-item {
        padding: 1.5rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .restaurant-content,
    .accommodation-content {
        gap: 30px;
    }

    .restaurant-text,
    .accommodation-text {
        padding: 0 5px;
    }

    .restaurant-text h3,
    .accommodation-text h3 {
        font-size: 1.5rem;
    }

    .restaurant-details {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .restaurant-hours {
        padding: 1rem;
    }

    .features-list {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .features-list li {
        margin-bottom: 0.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
        position: relative;
        z-index: 10 !important;
        opacity: 1 !important;
    }

    /* Phone CTA Mobile Styles */
    .phone-cta {
        margin-top: 30px;
        padding: 15px 10px;
    }

    .phone-cta-button {
        padding: 16px 28px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .phone-cta-large {
        padding: 18px 32px;
        font-size: 1.2rem;
    }

    .phone-cta-icon {
        font-size: 1.3rem;
    }

    .phone-cta-large .phone-cta-icon {
        font-size: 1.5rem;
    }

    .phone-cta-text strong {
        font-size: 1.05em;
    }

    /* Completely disable hover overlays on mobile - ensure images are always visible */
    .gallery-item::before {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .gallery-item::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        background: none !important;
    }

    .gallery-item:hover::before,
    .gallery-item:hover::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .gallery-item:hover {
        transform: none !important;
    }

    .gallery-item:hover img {
        transform: none !important;
    }

    .contact-content {
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .contact-form-container {
        order: 2;
        width: 100%;
        margin-top: 20px;
    }

    .contact-item {
        margin-bottom: 2rem;
        width: 100%;
        display: block;
    }

    .contact-item:first-child {
        margin-top: 0;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form-container {
        width: 100%;
        padding: 0;
    }

    .submit-button,
    .booking-submit-button {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        align-self: stretch;
    }

    .booking-info {
        padding: 1.2rem;
    }

    .booking-info h4 {
        font-size: 1.3rem;
    }

    .booking-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .modal-content-booking {
        width: 98%;
        padding: 1.2rem;
        margin: 2% auto;
        max-height: 95vh;
    }

    .modal-content-booking h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

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

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .modal-zoom-controls {
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .modal-content {
        max-width: 98%;
        max-height: 85vh;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-social h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer .social-links {
        flex-direction: row;
        gap: 0.75rem;
    }

    .footer .social-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .footer p {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .logo {
        font-size: 1rem;
        max-width: 150px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        min-width: 180px;
        padding: 10px 20px;
    }

    .modal-content-booking {
        padding: 1rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .booking-button,
    .submit-button,
    .booking-submit-button {
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    /* Disable gallery overlays on touch devices */
    .gallery-item::before,
    .gallery-item::after {
        display: none !important;
    }

    .gallery-item:hover::before,
    .gallery-item:hover::after {
        display: none !important;
    }

    .gallery-item:hover {
        transform: none !important;
    }

    .gallery-item:hover img {
        transform: none !important;
    }

    .gallery-item img {
        opacity: 1 !important;
        z-index: 1;
    }

    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile map adjustments */
@media (max-width: 600px) {
    .map-container {
        margin-top: 1rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

/* Ensure images don't overflow on mobile */
.restaurant-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.restaurant-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-indicators .indicator.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.accommodation-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.accommodation-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.accommodation-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.accommodation-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .restaurant-image,
    .accommodation-image {
        aspect-ratio: 16 / 10;
    }

    /* Force gallery images to be visible on mobile - remove all overlays */
    .gallery-item {
        position: relative;
    }

    .gallery-item::before {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }

    .gallery-item::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        background: transparent !important;
        z-index: -1 !important;
    }

    .gallery-item:hover::before,
    .gallery-item:hover::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .gallery-item img {
        z-index: 100 !important;
        opacity: 1 !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
    }

    /* Ensure all gallery images are visible, including lazy loaded ones */
    .gallery-item img[loading="lazy"] {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Force images visible even if parent item has opacity 0 */
    .gallery-item[style*="opacity: 0"] img,
    .gallery-item[style*="opacity:0"] img {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Gallery images should ALWAYS be visible - override lazy loading */
.gallery-item img {
    opacity: 1 !important;
}

.gallery-item img[loading="lazy"] {
    opacity: 1 !important;
}

.gallery-item img[loading="lazy"]:not(.loaded) {
    opacity: 1 !important;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-contact,
    .back-to-top,
    .whatsapp-button,
    .scroll-indicator,
    .carousel-indicators,
    .modal,
    .booking-buttons,
    .submit-button {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

