* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main,
#home,
section:not(:first-child) {
    flex: 1;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.95);
    padding: 0.8rem 1.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    width: auto;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

#navMenu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0.2rem;
}

#navMenu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

#navMenu li a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    font-size: medium;
}

.hero .video {
    min-height: 100vh;
    padding: 40px;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(2px);
}

/* Ensure detail full-screen video doesn't force extra page height */
.detail-video-bg,
.bg-video,
.bg-video1 {
    min-height: 100vh;
    max-height: 100vh;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #333;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn:hover {
    background: linear-gradient(45deg, #b8942f, #d4af37);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #d4af37;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 25%;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #555;
    line-height: 1.8;
}

.about-icon {
    text-align: center;
    align-items: center;
    margin-bottom: 10%;
}

.about-icon img {
    max-width: 100%;
    height: auto;
}

.about-icon i {
    font-size: 7rem;
    color: #d4af37;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Menu */
#menu {
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.menu-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s;
}

.menu-item:hover::before {
    opacity: 0.12;
}

.menu-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.menu-item i {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.menu-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    margin-top: 1.2rem;
}

/* Gallery */
#gallery {
    background: linear-gradient(135deg, #f8f8f8 0%, #e9ecef 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, #d4af37, #b8942f, #d4af37);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 1.2rem;
    text-align: center;
    text-decoration: none !important;
}

.gallery-item i {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.gallery-item span {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    text-decoration: none !important;
}

.gallery-item p {
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.95;
    margin-top: 0.5rem;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.gallery-item:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-out;
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Contact */
#contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('https://res.cloudinary.com/dynj75rya/image/upload/v1780043937/contace-bg_rtcxag.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contact-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.form1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);

}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

/* Footer */
footer {
    background: rgba(8, 8, 8, 0.95);
    color: white;
    padding: 3rem 2rem 0;
    border-top: 2px solid #d4af37;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
    padding-left: 0.5rem;
}

.footer-section i {
    color: #d4af37;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #999;
}

footer i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Footer Contact Links */
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.footer-link i {
    margin-right: 0;
}

.footer-link:hover {
    transform: translateX(3px);
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}

.whatsapp-link:hover {
    color: #25d366;
    background-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover i {
    color: #25d366;
    animation: pulse 0.5s ease-in-out;
}

.email-link:hover {
    color: #dadd0c;
    background-color: rgba(255, 107, 107, 0.1);
}

.email-link:hover i {
    color: #ebe3e3;
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Full screen video */
.detail-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Dark + blur overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.55);
    z-index: -2;
}

/* Content container */
.detail-container {
    position: relative;
    z-index: 2;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

/* Glass effect box */
.glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Title */
.detail-header h1 {
    font-size: 42px;
    color: #00ff88;
}

/* Feature list */
#featuresList li {
    margin: 8px 0;
    list-style: none;
}

/* Back button */
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #00ff88;
}

/* Detail Page Styles */
.detail-container {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: transparent !important;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}


.back-btn {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s;
    font-weight: bold;
}

.back-btn:hover {
    color: #b8942f;
    transform: translateX(-5px);
}

.back-btn i {
    margin-right: 0.5rem;
}

.detail-header {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.bg-video1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: blur(8px);
}

.detail-header h1 {
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 1rem;
}

.detail-subtitle {
    color: #666;
    font-size: 1.3rem;
    font-style: italic;
}

.detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-description,
.detail-features {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
}

.detail-description h2,
.detail-features h2 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.detail-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #555;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    color: #d4af37;
    padding-left: 1rem;
}

.features-list i {
    color: #d4af37;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.detail-cta {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #333;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.detail-cta p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #333, #555) !important;
    color: #d4af37 !important;
    font-size: 1.2rem;
    padding: 1rem 2rem !important;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #555, #333) !important;
    color: #f4d03f !important;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none !important;
}

.menu-item:hover .read-more {
    transform: translateX(5px);
}

/* Responsive Design - Tablets and Below */
@media (max-width: 1024px) {
    section {
        padding: 3.5rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
    

    h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .menu-grid,
    .gallery-grid {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-icon i {
        font-size: 5rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

/* Responsive Design - Tablets (768px and below) - Show Hamburger */
@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1rem;
        flex-direction: row;
        gap: 1rem;
        min-height: 60px;
    }

    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .nav-logo {
        height: 35px;
        width: auto;
    }

    .hamburger {
        display: flex;
    }

    #navMenu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: rgba(8, 8, 8, 0.98);
        border-top: 2px solid #d4af37;
        gap: 0;
        margin-top: 0;
        justify-content: flex-start;
        align-items: stretch;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    #navMenu.active {
        display: flex;
    }

    #navMenu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    #navMenu li a {
        display: block;
        padding: 1rem;
        font-size: 0.95rem;
        margin: 0;
        border-radius: 0;
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s;
    }

    #navMenu li a:hover {
        background-color: rgba(212, 175, 55, 0.2);
        color: #d4af37;
    }

    /* Header/Hero */
    header {
        height: 70vh;
        padding-top: 65px;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Sections */
    section {
        padding: 2.5rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h2::after {
        width: 50%;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .about-icon i {
        font-size: 4.5rem;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        padding: 1.8rem 1.5rem;
    }

    .menu-item i {
        font-size: 2.5rem;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 200px;
        font-size: 1.2rem;
    }

    .gallery-item i {
        font-size: 2.5rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 1.8rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px;
    }

    .form-group textarea {
        height: 120px;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        font-size: 2rem;
        margin-right: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* Detail Page */
    .detail-container {
        padding: 6rem 1.5rem 2rem;
    }

    .detail-header {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .detail-header h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .detail-subtitle {
        font-size: 1rem;
    }

    .detail-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .detail-description,
    .detail-features {
        padding: 1.8rem 1.5rem;
    }

    .detail-description h2,
    .detail-features h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .detail-description p {
        font-size: 0.95rem;
    }

    .features-list li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .detail-cta {
        padding: 2rem 1.5rem;
    }

    .detail-cta p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .back-btn {
        font-size: 0.95rem;
    }
}

/* Responsive Design - Mobile (480px and below) */
@media (max-width: 480px) {
    * {
        margin: 0;
        padding: 0;
    }

    /* Navigation */
    nav {
        padding: 0.6rem 1rem;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-logo {
        height: 32px;
        width: auto;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    #navMenu {
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: rgba(8, 8, 8, 0.99);
        border-top: 2px solid #d4af37;
        gap: 0;
        margin-top: 0;
        justify-content: flex-start;
        align-items: stretch;
        max-height: calc(100vh - 55px);
        overflow-y: auto;
    }

    #navMenu.active {
        display: flex;
    }

    #navMenu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    #navMenu li a {
        display: block;
        padding: 0.9rem 0.8rem;
        font-size: 0.9rem;
        margin: 0;
        border-radius: 0;
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s;
    }

    #navMenu li a:hover {
        background-color: rgba(212, 175, 55, 0.2);
        color: #d4af37;
    }

    /* Header/Hero */
    header {
        height: 60vh;
        margin-top: 0;
    }

    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Sections */
    section {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 15px 0;
    }

    h2::after {
        width: 80%;
        height: 3px;
        margin: 0.8rem auto;
    }

    /* About */
    .about-content {
        gap: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .about-icon i {
        font-size: 3.5rem;
        width: 20%;
    }

    /* Menu Grid */
    .menu-grid {
        gap: 1rem;
    }

    .menu-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .menu-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .menu-item h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .menu-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Gallery Grid */
    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        height: 180px;
        font-size: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .gallery-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .gallery-item p {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-content {
        gap: 1.5rem;
    }

    .contact-info {
        order: 2;
        padding-left: 12%;
    }

    .contact-form {
        order: 1;
        padding: 1.5rem 1rem;
    }

    .form1 {
        gap: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem 0.8rem;
        font-size: 16px;
        border-radius: 8px;
    }

    .form-group textarea {
        height: 100px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-right: 0.8rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem 0;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.8rem;
    }

    /* Detail Page */
    .detail-container {
        padding: 5rem 1rem 1.5rem;
    }

    .detail-content {
        padding: 0 0.5rem;
    }

    .detail-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .detail-header h1 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .detail-subtitle {
        font-size: 0.9rem;
    }

    .detail-body {
        gap: 1rem;
    }

    .detail-description,
    .detail-features {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .detail-description h2,
    .detail-features h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .detail-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .features-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .detail-cta {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .detail-cta p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .btn-primary {
        font-size: 1rem !important;
        padding: 0.8rem 1.5rem !important;
    }

    .back-btn {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    nav ul li a {
        font-size: 0.65rem;
        padding: 0.2rem 0.3rem;
    }
}

/* Strong override responsive improvements */
@media (max-width: 1024px) {
    .hero {
        padding: 0 1rem;
    }

    .menu-item,
    .gallery-item,
    .contact-form,
    .detail-description,
    .detail-features,
    .detail-cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .gallery-item {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    #navMenu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
    }

    header {
        background-attachment: scroll;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p,
    .about-text p,
    .menu-item p,
    .gallery-item p,
    .detail-description p,
    .features-list li,
    .footer-section p,
    .footer-section a {
        font-size: 0.95rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.35rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .about-icon img,
    .menu-item,
    .gallery-item,
    .contact-form,
    .detail-description,
    .detail-features,
    .detail-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }
}
