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

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(222, 84%, 5%);
    color: hsl(210, 20%, 98%);
    line-height: 1.6;
}

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

/* Typography */
.font-cinzel {
    font-family: 'Cinzel', serif;
}

.text-gold {
    color: hsl(24, 95%, 53%);
}

.text-white {
    color: hsl(210, 20%, 98%);
}

.text-red {
    color: hsl(0, 74%, 42%);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(14, 17, 35, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(236, 112, 36, 0.2);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand i {
    color: hsl(24, 95%, 53%);
    font-size: 1.5rem;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: hsl(24, 95%, 53%);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: hsl(210, 20%, 98%);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: hsl(24, 95%, 53%);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: hsl(210, 20%, 98%);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: hsl(24, 95%, 53%);
}

.language-switch span {
    color: hsl(24, 95%, 53%);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: hsl(24, 95%, 53%);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(222, 84%, 5%) 0%, hsl(215, 25%, 27%) 50%, hsl(215, 28%, 17%) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle, hsla(24, 95%, 53%, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 70% 20%, hsla(0, 74%, 42%, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, hsla(43, 96%, 56%, 0.2) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-1, .floating-2, .floating-3 {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2rem;
    color: hsl(24, 95%, 53%);
}

.floating-2 {
    top: 10rem;
    right: 5rem;
    color: hsl(43, 96%, 56%);
    animation-delay: 2s;
}

.floating-3 {
    bottom: 8rem;
    left: 5rem;
    color: hsl(24, 95%, 53%);
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.info-card {
    background: rgba(14, 17, 35, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(236, 112, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.info-card i {
    color: hsl(24, 95%, 53%);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.info-card p {
    opacity: 0.8;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: hsl(24, 95%, 53%);
    color: hsl(222, 84%, 5%);
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-primary:hover {
    background: hsl(43, 96%, 56%);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: hsl(24, 95%, 53%);
    border: 2px solid hsl(24, 95%, 53%);
}

.btn-outline:hover {
    background: hsl(24, 95%, 53%);
    color: hsl(222, 84%, 5%);
}

.btn-secondary {
    background: hsl(0, 74%, 42%);
    color: white;
}

.btn-secondary:hover {
    background: hsl(0, 74%, 35%);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 3xl;
    margin: 0 auto;
}

/* Experience Section */
.experience {
    background: rgba(71, 85, 105, 0.5);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .experience-content {
        grid-template-columns: 1fr 1fr;
    }
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background: rgba(236, 112, 36, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon i {
    color: hsl(24, 95%, 53%);
    font-size: 1.25rem;
}

.feature-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-text p {
    opacity: 0.8;
}

.experience-image {
    position: relative;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 17, 35, 0.6), transparent);
    border-radius: 1rem;
}

/* Schedule Section */
.schedule {
    background: hsl(222, 84%, 5%);
}

.schedule-card {
    background: linear-gradient(to right, rgba(71, 85, 105, 1), rgba(55, 65, 81, 1));
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(236, 112, 36, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .schedule-card {
        flex-direction: row;
        justify-content: space-between;
    }
}

.schedule-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
    color: hsl(24, 95%, 53%);
    margin-bottom: 1rem;
}

.schedule-times {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .schedule-times {
        justify-content: flex-start;
    }
}

.time-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-block i {
    color: hsl(24, 95%, 53%);
}

.time-block .time {
    font-size: 1.25rem;
    font-weight: bold;
}

.time-block .label {
    opacity: 0.8;
}

.arrow {
    color: hsl(24, 95%, 53%);
    font-size: 1.25rem;
}

.schedule-booking {
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: hsl(24, 95%, 53%);
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Booking Form */
.booking-form {
    background: rgba(14, 17, 35, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(236, 112, 36, 0.2);
    margin-top: 2rem;
}

.booking-form h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(24, 95%, 53%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .form-group:last-child {
        grid-column: span 1;
    }
}

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

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(236, 112, 36, 0.3);
    border-radius: 0.5rem;
    background: hsl(222, 84%, 5%);
    color: hsl(210, 20%, 98%);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(24, 95%, 53%);
}

.form-group textarea {
    resize: none;
}

/* Gallery Section */
.gallery {
    background: rgba(71, 85, 105, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    group: hover;
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 17, 35, 0.4);
    transition: background 0.3s ease;
    display: flex;
    align-items: end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(14, 17, 35, 0.6);
}

.gallery-overlay h4 {
    color: white;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: hsl(222, 84%, 5%);
}

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

.testimonial {
    background: rgba(71, 85, 105, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(236, 112, 36, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: hsl(24, 95%, 53%);
}

.testimonial p {
    opacity: 0.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: rgba(71, 85, 105, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(14, 17, 35, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(236, 112, 36, 0.3);
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(24, 95%, 53%);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: hsl(24, 95%, 53%);
}

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

.social-links a {
    background: rgba(236, 112, 36, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    color: hsl(210, 20%, 98%);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: hsl(24, 95%, 53%);
    color: hsl(222, 84%, 5%);
}

.contact-card ul {
    list-style: none;
}

.contact-card li {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-form-card {
    background: rgba(14, 17, 35, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(236, 112, 36, 0.3);
}

.contact-form-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(24, 95%, 53%);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: hsl(222, 84%, 5%);
    border-top: 1px solid rgba(236, 112, 36, 0.2);
    padding: 2rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: hsl(24, 95%, 53%);
    font-size: 1.5rem;
}

.footer-brand span {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: hsl(24, 95%, 53%);
}

.footer-text {
    opacity: 0.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: hsl(24, 95%, 53%);
}

.lightbox-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: hsl(222, 84%, 5%);
    border: 1px solid rgba(236, 112, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-header i {
    color: hsl(120, 100%, 50%);
    font-size: 3rem;
}

.modal-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes glow {
    from { 
        box-shadow: 0 0 20px hsl(24, 95%, 53%); 
    }
    to { 
        box-shadow: 0 0 30px hsl(43, 96%, 56%); 
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-1, .floating-2, .floating-3 {
        font-size: 2rem;
    }
    
    .schedule-times {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}