/* Fonts */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

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

/* Header Styles */
#header {
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#header.scrolled .header-title,
#header.scrolled .header-subtitle,
#header.scrolled .nav-link {
    color: #1f2937;
}

#header:not(.scrolled) .header-title,
#header:not(.scrolled) .header-subtitle,
#header:not(.scrolled) .nav-link {
    color: white;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fb923c;
}

/* Hero Section */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1024967/pexels-photo-1024967.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(194, 65, 12, 0.4));
}

.hero-title {
    animation: fadeInUp 1s ease-out;
    color: white !important;
}

.cta-button {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(to right, #ea580c, #db2777);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Hero text colors - force white */
.hero-location,
.hero-subtitle,
.hero-description,
.hero-rating {
    color: white !important;
}

/* CTA section text colors - force white */
.cta-title,
.cta-subtitle {
    color: white !important;
}

.cta-button-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    background: transparent;
    cursor: pointer;
}

.cta-button-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-mouse::before {
    content: '';
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Section Divider */
.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #fb923c, #ec4899);
    margin: 0 auto 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to right, #fb923c, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gallery Styles */
.gallery-container {
    margin-bottom: 3rem;
}

.gallery-main {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.gallery-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: white;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-nav-left {
    left: 1rem;
}

.gallery-nav-right {
    right: 1rem;
}

.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-dot.active {
    background: white;
}

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

.gallery-thumbnail {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

.gallery-thumbnail.active {
    ring: 4px;
    ring-color: #fb923c;
}

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

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

/* Instagram Section */
.instagram-section {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transform: scale(1);
}

.instagram-btn:hover {
    background: linear-gradient(to right, #db2777, #7c3aed);
    transform: scale(1.05);
}

/* Restaurant Styles */
.restaurant-menu {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: #14b8a6;
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dish-card {
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.dish-card:hover {
    transform: translateY(-0.5rem);
}

.dish-image {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-info {
    text-align: center;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #14b8a6;
}

.menu-btn {
    background: linear-gradient(to right, #14b8a6, #3b82f6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    transform: scale(1);
}

.menu-btn:hover {
    background: linear-gradient(to right, #0f766e, #2563eb);
    transform: scale(1.05);
}

/* Location Styles */
.location-info {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.direction-time {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.attractions-card {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.attraction-item {
    display: flex;
    align-items: center;
}

.attraction-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    display: inline-block;
}

.map-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-embed {
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff7ed;
    border-radius: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-quote {
    position: relative;
    padding-left: 1.5rem;
}

.rating-summary {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* CTA Section */
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1024967/pexels-photo-1024967.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(194, 65, 12, 0.8), rgba(219, 39, 119, 0.7), rgba(147, 51, 234, 0.8));
}

.cta-whatsapp {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cta-whatsapp:hover {
    background: linear-gradient(to right, #16a34a, #15803d);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-instagram {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cta-instagram:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */
.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ec4899;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-link {
    display: block;
    color: #9ca3af;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #fb923c;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 1000;
    animation: pulse 2s infinite;
    transform: scale(1);
}

.whatsapp-float:hover {
    background: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    position: relative;
    animation: popupIn 0.3s ease-out;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9ca3af;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-close:hover {
    color: #6b7280;
}

.popup-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #fb923c, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.popup-discount {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.popup-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.popup-btn-primary {
    width: 100%;
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    transform: scale(1);
}

.popup-btn-primary:hover {
    background: linear-gradient(to right, #16a34a, #15803d);
    transform: scale(1.05);
}

.popup-btn-secondary {
    width: 100%;
    color: #6b7280;
    padding: 0.5rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-btn-secondary:hover {
    color: #374151;
}

.popup-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1rem;
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-1rem);
    }
    70% {
        transform: translateX(-50%) translateY(-0.5rem);
    }
    90% {
        transform: translateX(-50%) translateY(-0.25rem);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-location,
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .popup-content {
        margin: 1rem;
    }
    
    .cta-whatsapp,
    .cta-instagram {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-location {
        font-size: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-rating {
        font-size: 0.875rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}