/* ========================================
   IMPORT FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playwrite+CU:wght@100..400&display=swap');

/* ========================================
   GLOBAL RESET AND BASE STYLES
   ======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    font-family: "Inter", sans-serif;
    color: #fff;
    line-height: 1.6;
    text-transform: capitalize;
    overflow-x: hidden;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   NAVIGATION BAR - RESPONSIVE
   ======================================== */
.navbar {
    width: 100%;
    padding: 15px clamp(1rem, 5vw, 16rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid #333;
    height: clamp(8vh, 10vw, 13vh);
}

/* Logo styling */
.logo {
    font-size: clamp(1.2em, 4vw, 2.2em);
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #fff;
    transition: color 0.3s ease;
}

.logo:hover { color: #fd671a; }

.logo img {
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation items */
.nav_items {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav_items li {
    padding: 1em 1.5em;
    position: relative;
}

.nav_items li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav_items li::after {
    content: '';
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #fd671a, #ff8c42);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav_items li:hover::after { width: 80%; }
.nav_items li a:hover {
    color: #fd671a;
    transform: translateY(-2px);
}

/* Hamburger menu */
.nav_menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.nav_menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ff7b00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .nav_items {
        position: fixed;
        top: clamp(8vh, 10vw, 13vh);
        right: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 200px;
        padding: 20px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nav_items.active { right: 0; }
    .nav_menu { display: flex; }
}

/* ========================================
   HEADER SECTION - RESPONSIVE
   ======================================== */
header {
    position: relative;
    margin-top: clamp(8vh, 10vw, 13vh);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                url(img/DSC01886.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll; /* Changed to scroll for all devices */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   BUTTON STYLES - RESPONSIVE
   ======================================== */
.btn {
    padding: clamp(10px, 2vw, 15px) clamp(16px, 4vw, 24px);
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 1.5px;
    cursor: pointer;
    background: linear-gradient(45deg, #fd671a, #ff8c42);
    border: 2px solid #fd671a;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn:hover {
    background: transparent;
    border-color: #fd671a;
    color: #fd671a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 103, 26, 0.3);
}

.btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2vw, 15px) clamp(16px, 4vw, 24px);
    border: 2px solid #fd671a;
    border-radius: 8px;
    color: #fd671a;
    font-weight: 700;
    text-transform: uppercase;
    background: #000;
    cursor: pointer;
    box-shadow: 0 0 10px #fd671a, 0 0 20px #fd671a, 0 0 30px #fd671a;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn2:hover {
    box-shadow: 0 0 15px #fd671a, 0 0 30px #fd671a, 0 0 45px #fd671a, 0 0 60px #fd671a;
    transform: translateY(-3px);
}

/* ========================================
   MAIN HERO SECTION - RESPONSIVE
   ======================================== */
.main {
    width: min(95%, 1200px);
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

.heading_1 {
    font-size: clamp(2rem, 8vw, 4.4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #fd671a, #fff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    line-height: 1.1;
}

.heading {
    font-size: clamp(1rem, 3vw, 1.4rem);
    padding: 1% 0;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main_btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: clamp(30px, 8vw, 70px);
}

/* About text section */
.about_text {
    max-width: 1000px;
    margin: 40px auto 50px auto;
    padding: 20px;
    border-radius: 15px;
}

.custom-text {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: normal;
    line-height: 1.5;
}

/* ========================================
   SECTIONS LAYOUT - RESPONSIVE
   ======================================== */
.sec {
    padding: clamp(50px, 10vw, 100px) 0;
    width: min(95%, 1400px);
    margin: auto;
}

.head {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.head .heading {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 20px;
}

.head .heading_1 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
}

.heading span {
    color: #fd671a;
    font-weight: 900;
}

.highlight-box {
    display: inline-block;
    background-color: #fd671a;
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 20px);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: clamp(50px, 12vw, 150px);
}

/* ========================================
   PHOTO GALLERY - RESPONSIVE GRID
   ======================================== */
.photo-gallery {
    padding: 0 0 80px 0;
    width: 100%;
    margin-top: clamp(50px, 12vw, 150px);
}

.photo-grid {
    max-width: 1400px;
    margin: 40px auto 0;
    display: grid;
    gap: clamp(15px, 2vw, 20px);
    padding: 0 20px;
}

/* Responsive photo grid */
@media screen and (min-width: 1025px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 70vh;
        min-height: 600px;
    }

    .photo-item.large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .photo-item:nth-child(2) {
        grid-column: 2 / 4;
        grid-row: 1;
    }

    .photo-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .photo-item:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 60vh;
        min-height: 500px;
    }

    .photo-item.large {
        grid-row: span 2;
        grid-column: 1;
    }

    .photo-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .photo-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .photo-item:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .photo-item {
        height: 250px !important;
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .photo-item.large {
        grid-row: span 1;
    }

    .photo-item:nth-child(4) {
        display: block;
    }
}

/* Photo item styles */
.photo-item {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.photo-item:hover,
.photo-item:active {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(253, 103, 26, 0.3);
    border-color: #fd671a;
}

.photo-item video,
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(1.1);
    transition: all 0.4s ease;
}

.photo-item:hover video,
.photo-item:hover img,
.photo-item:active video,
.photo-item:active img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(253, 103, 26, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.photo-item:hover .photo-overlay,
.photo-item:active .photo-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    background: rgba(253, 103, 26, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(20px, 4vw, 30px);
    z-index: 3;
    opacity: 0.8;
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.photo-item:hover .video-play-btn,
.photo-item:active .video-play-btn {
    opacity: 1;
    background: #fd671a;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(253, 103, 26, 0.5);
}

/* ========================================
   MENU GALLERY - RESPONSIVE GRID
   ======================================== */
.menu-grid {
    display: grid;
    gap: clamp(15px, 2vw, 20px);
    padding: 20px;
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

/* Responsive menu grid */
@media screen and (min-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 450px);
        grid-template-rows: repeat(2, 300px);
    }

    .menu-item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
    .menu-item:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
    .menu-item:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
    .menu-item:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
    .menu-item:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .menu-item:nth-child(1) { grid-column: 1 / 3; }
}

@media screen and (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .menu-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 250px !important;
    }
}

.menu-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item a {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-info h3 {
    color: white;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(10px, 1.5vw, 12px);
    margin: 2px 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.arrow-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
}

.menu-item:hover .arrow-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

/* ========================================
   SPECIAL EVENTS SECTION - RESPONSIVE
   ======================================== */
.special-events {
    text-align: center;
    padding: clamp(50px, 10vw, 100px) clamp(20px, 5vw, 100px);
    width: min(98%, 2000px);
    margin: 0 auto;
}

.special-events .heading_1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fd671a;
    font-weight: 800;
}

/* ========================================
   RESERVATION SECTION - RESPONSIVE
   ======================================== */
.reservation-section {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: min(95%, 1400px);
    margin: 0 auto;
    gap: 0;
}

@media screen and (max-width: 768px) {
    .reservation-section {
        flex-direction: column;
        min-height: auto;
        width: 95%;
    }

    .left-image {
        width: 100%;
        height: 40vh;
        min-height: 250px;
    }

    .reservation-form {
        width: 100%;
        padding: clamp(20px, 5vw, 40px);
    }
}

@media screen and (min-width: 769px) {
    .left-image {
        width: 50%;
        height: auto;
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    .reservation-form {
        width: 50%;
        padding: clamp(30px, 5vw, 50px);
        background: #000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

.left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 15px;
    filter: grayscale(100%);
    cursor: pointer;
}

.left-image:hover img,
.left-image:active img {
    transform: scale(1.05);
    filter: grayscale(0%);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.header-text {
    color: #ff6b35;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    margin-bottom: clamp(20px, 5vw, 40px);
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 15px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .header-text {
        text-align: left;
    }
}

.form-group {
    margin-bottom: clamp(20px, 4vw, 40px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    color: #ccc;
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 15px);
    background: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
    font-size: clamp(12px, 2vw, 14px);
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

input::placeholder, textarea::placeholder {
    color: #888;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #ff6b35;
    color: #000;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: clamp(15px, 3vw, 18px) clamp(20px, 4vw, 30px);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: auto;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

@media screen and (max-width: 480px) {
    .submit-btn {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }
}

/* ========================================
   MAP SECTION - RESPONSIVE
   ======================================== */
.map-container {
    width: min(95%, 1400px);
    height: clamp(250px, 50vw, 400px);
    margin: clamp(5rem, 15vw, 11rem) auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/* ========================================
   FOOTER SECTION - RESPONSIVE (3 COLUMNS)
   ======================================== */
footer {
    background: #141414;
    padding: clamp(40px, 8vw, 60px) 0 clamp(20px, 4vw, 30px);
    margin-top: auto;
    position: relative;
    overflow: hidden;
   
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffffff1a;
    animation: gradientShift 3s ease-in-out infinite;
}

.footer_container {
    display: flex;                 /* side-by-side layout */
    flex-wrap: wrap;               /* wrap on smaller screens */
    justify-content: space-between; /* push columns apart */
           /* gap :1000px 1000px;            */
    margin-left: 300px;
}

.footer_col {
    flex: 1 1 250px;               /* flexible columns, min width 250px */
}


@media screen and (min-width: 769px) {
    .footer_container {
        grid-template-columns: 1fr 1fr 1fr;
         gap: 50px; 
         margin-left: auto;
    }
}

@media screen and (max-width: 768px) {
    .footer_container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px; 
        margin-left: auto;
    }
}

.footer_col h4 {
    color: #ff8c42;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer_col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    border-radius: 1px;
    background: #ff8c42;
}

@media screen and (max-width: 768px) {
    .footer_col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Brand Column */
.footer_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-left: 290px;
}

@media screen and (max-width: 768px) {
    .footer_logo {
        justify-content: center;
    }
}

.footer_logo img {
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer_logo span {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    color: #e75d00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer_text {
    line-height: 1.6;
    color: #bdc3c7;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 25px;
    max-width: 300px;margin-left: 290px;
}

@media screen and (max-width: 768px) {
    .footer_text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Social Media */
.footer_socials {
    display: flex;
    gap: 15px;
    list-style: none;
}

@media screen and (max-width: 768px) {
    .footer_socials {
        justify-content: center;
    }
}

.footer_socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 6vw, 45px);
    height: clamp(35px, 6vw, 45px);
    background: rgba(255,255,255,0.1);
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer_socials li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.footer_socials li:nth-child(1) a:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #e45b00);
}

.footer_socials li:nth-child(2) a:hover {
    background: #3b5998;
}

.footer_socials li:nth-child(3) a:hover {
    background: #000;
}

/* Links */
.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 12px;
}

.footer_links li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .footer_links li a {
        justify-content: center;
    }
    .footer_text{
         max-width: 300px;margin-left: auto;
    }
    .footer_logo{
           margin-left: auto;
    }
}

.footer_links li a:hover {
    color: #e74c3c;
    transform: translateX(5px);
}

.footer_links li a i {
    font-size: 1rem;
    width: 20px;
}

/* Quick Links */
.quick_links {
    list-style: none;
}

.quick_links li {
    margin-bottom: 10px;
}

.quick_links li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

@media screen and (max-width: 768px) {
    .quick_links li a {
        padding-left: 0;
        text-align: center;
    }
    
    .quick_links li a::before {
        display: none;
    }
}


.quick_links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.quick_links li a:hover {
    color: #e74c3c;
    padding-left: 20px;
}

.quick_links li a:hover::before {
    left: 5px;
}

/* Newsletter */
.newsletter_form {
    margin-top: 20px;
}

.newsletter_input {
    display: flex;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .newsletter_input {
        flex-direction: column;
        gap: 10px;
    }
}

.newsletter_input input {
    flex: 1;
    padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255,255,255,0.1);
    color: #ecf0f1;
    outline: none;
    backdrop-filter: blur(10px);
    font-size: clamp(12px, 2vw, 14px);
}

@media screen and (max-width: 768px) {
    .newsletter_input input {
        border-radius: 25px;
    }
}

.newsletter_input input::placeholder {
    color: #bdc3c7;
}

.newsletter_input button {
    padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 20px);
    border: none;
    border-radius: 0 25px 25px 0;
    background: linear-gradient(135deg, #e74c3c, #e74c3c);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 2vw, 14px);
}

@media screen and (max-width: 768px) {
    .newsletter_input button {
        border-radius: 25px;
    }
}

.newsletter_input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Bottom Bar */
.footer_bottom {
    margin-top: clamp(25px, 5vw, 40px);
    padding-top: 25px;
    border-top: 1px solid #ffffff1a;
    text-align: center;
    color: #95a5a6;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .footer_bottom {
        flex-direction: column;
        gap: 10px;
    }
}

.footer_bottom p {
    margin: 0;
}

/* ========================================
   SCROLL-TO-TOP BUTTON - RESPONSIVE
   ======================================== */
.top {
    background: linear-gradient(45deg, #fd671a, #ff8c42);
    font-size: clamp(18px, 4vw, 24px);
    padding: clamp(12px, 2vw, 15px);
    position: fixed;
    border-radius: 50%;
    right: clamp(15px, 3vw, 30px);
    cursor: pointer;
    bottom: -80px;
    color: #fff;
    border: none;
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(253, 103, 26, 0.4);
}

.top.show {
    bottom: clamp(15px, 3vw, 30px);
    animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .top {
        animation: none !important;
    }
}

/* Focus states for better accessibility */
.nav_items a:focus,
.btn:focus,
.btn2:focus,
.top:focus,
.submit-btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid #fd671a;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .photo-item,
    .menu-item {
        border-width: 3px;
        border-color: #fd671a;
    }
    
    .overlay-text {
        text-shadow: 3px 3px 6px rgba(0,0,0,1);
        background: rgba(0,0,0,0.8);
        padding: 10px;
        border-radius: 5px;
    }
    
    .btn,
    .btn2 {
        border-width: 3px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .nav_menu,
    .top,
    .video-play-btn,
    .reservation-form,
    .footer_socials {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .heading_1,
    .footer_col h4 {
        color: black;
    }
    
    .photo-overlay {
        opacity: 1;
        background: rgba(255,255,255,0.9);
    }
    
    .overlay-text {
        color: black;
        text-shadow: none;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
.photo-item,
.menu-item,
.btn,
.btn2,
.top,
.nav_items li a {
    will-change: transform;
    backface-visibility: hidden;
}

.photo-item img,
.photo-item video,
.menu-item img,
.left-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}