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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9a9a9a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(223, 158, 30, 0.3);
    border-top: 3px solid #df9e1e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #9a9a9a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    color: #df9e1e;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #df9e1e;
    margin: 1rem auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.hero-logo-image {
    height: 250px;
    width: auto;
    margin-top: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #df9e1e;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: auto;
    position: absolute;
    right: 2rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero-bg-final.jpg') center/cover no-repeat, linear-gradient(135deg, #7a7a7a 0%, #9a9a9a 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #df9e1e;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subheadline {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-size: 1.2rem;
    color: #df9e1e;
    margin-bottom: 3rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #df9e1e;
    color: #000000;
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(223, 158, 30, 0.3);
}

.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 ease;
}

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

.cta-button:visited,
.cta-button:active,
.cta-button:focus {
    background: #df9e1e;
    color: #000000;
    text-decoration: none;
}

.cta-button:visited:hover,
.cta-button:active:hover,
.cta-button:focus:hover {
    background: #ffffff;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    background: transparent;
    color: #df9e1e;
    border: 2px solid #df9e1e;
    padding: calc(1rem - 2px) calc(2.2rem - 2px);
}

.cta-button-outline:hover {
    background: #df9e1e;
    color: #000000;
    border-color: #df9e1e;
}

.cta-button-outline:visited,
.cta-button-outline:active,
.cta-button-outline:focus {
    background: transparent;
    color: #df9e1e;
    border: 2px solid #df9e1e;
}

.cta-button-outline:visited:hover,
.cta-button-outline:active:hover,
.cta-button-outline:focus:hover {
    background: #df9e1e;
    color: #000000;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #9a9a9a;
}

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

.about-text h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-text {
    text-align: center;
}

.about-description {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fdfeff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


/* Location Section */
.location {
    padding: 6rem 0;
    background: #9a9a9a;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details h3 {
    color: #df9e1e;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.address {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    color: #fdfeff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address strong {
    color: #fdfeff;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #fdfeff;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #df9e1e;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #df9e1e;
}

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

.hours-info h4 {
    color: #df9e1e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hours-info p {
    color: #fdfeff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(223, 158, 30, 0.2);
    transition: box-shadow 0.3s ease;
}

.location-map:hover {
    box-shadow: 0 6px 30px rgba(223, 158, 30, 0.3);
}

.location-map iframe {
    border-radius: 10px;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #9a9a9a;
}

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

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

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(223, 158, 30, 0.8), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

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

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

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #df9e1e;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(223, 158, 30, 0.8);
    color: #000000;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #df9e1e;
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: #7a7a7a;
}

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

.booking-form {
    background: #9a9a9a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #b5b5b5;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    background: #9a9a9a;
    border: 1px solid #b5b5b5;
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #df9e1e;
    box-shadow: 0 0 0 2px rgba(223, 158, 30, 0.2);
}

.contact-info {
    background: #9a9a9a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #b5b5b5;
    height: fit-content;
}

.contact-info h3 {
    color: #df9e1e;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.contact-item strong {
    color: #df9e1e;
    display: block;
    margin-bottom: 0.5rem;
}

.phone-link {
    color: #fdfeff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #df9e1e;
}

.hours p {
    margin-bottom: 0.5rem;
    color: #fdfeff;
}

/* Footer */
.footer {
    background: #9a9a9a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #b5b5b5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-description {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fdfeff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-title {
    color: #df9e1e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #df9e1e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fdfeff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a:hover {
    color: #df9e1e;
}

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

.social-link {
    display: inline-block;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    vertical-align: middle;
}

.footer-bottom {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #b5b5b5;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 2rem 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-logo-image {
        height: 170px;
        margin-bottom: 1.5rem;
    }

    .logo-image {
        height: 55px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-details h3 {
        font-size: 1.5rem;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

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

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

    .booking-form,
    .contact-info {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        height: 150px;
        margin-bottom: 1rem;
    }

    .logo-image {
        height: 50px;
    }

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

    .nav {
        padding: 2.5rem 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #df9e1e;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #df9e1e;
    outline-offset: 2px;
}/* Updated: Force CSS reload with Orbitron font for CTA button */
