/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background-color: #000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* Animated Doors */
.doors-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    pointer-events: none;
}

.door {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1a2e1a 0%, #0d5c0d 100%);
    transition: transform 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.left-door {
    left: 0;
    transform: translateX(0);
}

.right-door {
    right: 0;
    transform: translateX(0);
}

.door::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('dimsum-pattern.png') repeat;
    opacity: 0.2;
}

/* Navigation */
#nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 40, 0, 0.819);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 15px 0;
}

#nav-bar.scrolled {
    background: rgba(0, 30, 0, 0.9);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
    color: #d4af37;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: #f6da7e;
    transform: rotate(50deg);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    background: url('pexels-scottwebb-2117938.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px;
    background: rgba(0, 20, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.3s forwards;
}

.hero h1 {
    font-size: 82px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(45deg, #f1c40f, #d4af37);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: #000;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cta-button:hover::after {
    transform: translateX(100%);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000 0%, #001a00 100%);
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,30,0,0.3) 100%);
}

/* About Section */
.about-content,
.about-image,
.gallery-item,
.contact-info {
    opacity: 1 !important;
    transform: none !important;
}


.about-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #000 0%, #001a00 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 80, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    padding: 50px;
    background: rgba(0, 20, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.about-content.animate {
    transform: translateX(0);
    opacity: 1;
}

.about-image {
    flex: 1;
    position: relative;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) 0.2s;
}

.about-image.animate {
    transform: translateX(0);
    opacity: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.section-title {
    font-size: 48px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, transparent);
    transition: width 0.5s ease;
}

.about-section:hover .section-title::after {
    width: 120px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d4af37;
    font-size: 20px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.signature::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #d4af37;
}

/* Order Section */
.order-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #000 0%, #001a00 100%);
    position: relative;
    overflow: hidden;
}

.order-section .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.order-section .section-title {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.order-section .section-subtitle {
    font-size: 18px;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-top: 0;
    line-height: 1.5;
}

.order-section .section-subtitle::before,
.order-section .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: #d4af37;
}

.order-section .section-subtitle::before {
    left: -50px;
}

.order-section .section-subtitle::after {
    right: -50px;
}

@media (max-width: 768px) {
    .order-section .section-subtitle::before,
    .order-section .section-subtitle::after {
        width: 20px;
    }
    
    .order-section .section-subtitle::before {
        left: -30px;
    }
    
    .order-section .section-subtitle::after {
        right: -30px;
    }
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Menu Item Styles */
.menu-item {
    background: rgba(0, 20, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    min-width: 300px;
    max-width: 350px;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.food-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .food-image img {
    transform: scale(1.1);
}

.food-details {
    padding: 1.5rem;
    background: transparent;
    position: relative;
}

.food-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.food-details p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.5;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    border: 1px dashed #d4af37;
}

/* Grouped item styles */
.grouped-item {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 10, 0, 0.3);
    border-radius: 10px;
}

.item-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-name {
    font-weight: bold;
    color: #fff;
}

.item-price {
    color: #d4af37;
    font-weight: bold;
}

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

.quantity-btn {
    background: rgba(212, 175, 55, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.quantity-btn:hover {
    background: rgba(212, 175, 55, 0.4);
    color: #fff;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 5px;
}

.add-to-cart {
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #f1c40f, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.add-to-cart:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.add-to-cart:hover::after {
    transform: scale(1);
}

/* Cart Styles */
.cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 20, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1.5rem;
    width: 350px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cart.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.cart-header h3 {
    font-size: 1.8rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #d4af37;
    transition: transform 0.3s;
}

.close-cart:hover {
    transform: rotate(90deg);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #d4af37;
}

.cart-item-price {
    color: #f1c40f;
    margin: 5px 0;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.cart-item-quantity button {
    background: rgba(212, 175, 55, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.cart-item-quantity button:hover {
    background: rgba(212, 175, 55, 0.4);
    color: white;
    transform: scale(1.1);
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 0.2rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.remove-item {
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: 10px;
    transition: transform 0.3s;
}

.remove-item:hover {
    transform: scale(1.2);
    color: #ff5252;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    margin-top: 1rem;
    color: #d4af37;
    padding-top: 1rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.checkout-btn {
    background: linear-gradient(45deg, #d4af37, #785f0d);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.checkout-btn:hover {
    background: linear-gradient(45deg, #6f580d, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.checkout-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.checkout-btn::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    opacity: 0;
}

.checkout-btn:hover::after {
    right: 30px;
    opacity: 1;
}

.cart-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 99;
    transition: all 0.3s;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.cart-icon:hover {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(45deg, #f1c40f, #d4af37);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #d4af37;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Added animation for cart count */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.cart-count.added {
    animation: bounce 0.3s;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
}

.gallery-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 30, 0, 0.7) 100%);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.gallery-item:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 30, 0, 0.4) 100%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-item .gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    z-index: 2;
    transition: bottom 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.gallery-item:hover .gallery-caption {
    bottom: 0;
}

.gallery-item .gallery-caption h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #d4af37;
}

.gallery-item .gallery-caption p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/*section header*/
.section-header, .section-title,
.section-header p {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}


/* Steps Section */
.steps-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #000 0%, #001a00 100%);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-tabs {
    display: flex;
    margin-bottom: 60px;
    justify-content: center;
}

.step-tab {
    padding: 18px 40px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #777;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-tab.active {
    color: #d4af37;
}

.step-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #f1c40f);
    transition: width 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.step-tab.active::after {
    width: 100%;
}

.step-tab:hover {
    color: #d4af37;
}

.step-content {
    display: none;
    padding: 50px;
    background: rgba(0, 20, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-content.active {
    display: block;
    animation: fadeIn 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.step-content h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #d4af37, transparent);
}

.what-you-need h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
}

.what-you-need ul {
    list-style: none;
    margin-bottom: 50px;
}

.what-you-need li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.what-you-need li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 24px;
    line-height: 1;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.step-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step-item p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
    padding-top: 8px;
}

/* Steps with Images Alternating Left and Right */
.step-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.step-wrapper img {
    width: 300px; /* Fixed width */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Ensures images maintain aspect ratio while filling the space */
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.step-item {
    max-width: 600px;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: #eee;
    flex: 1;
}

.step-item.left {
    order: 1;
    text-align: left;
}

.step-item.right {
    order: 2;
    text-align: right;
}

.step-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .step-wrapper {
        flex-direction: column !important;
        text-align: center;
    }

    .step-item {
        text-align: center !important;
    }

    .step-wrapper img {
        width: 100%; /* Full width on mobile */
        height: auto; /* Maintain aspect ratio */
        max-height: 200px; /* Limit height */
        margin-top: 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #001a00 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.contact-section .container {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: rgba(0, 20, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.contact-info.animate {
    transform: translateX(0);
    opacity: 1;
}

.contact-details {
    margin: 50px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff;
}

.contact-item i {
    color: #d4af37;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #000 0%, #001000 100%);
    color: #fff;
    padding: 100px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-logo p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d4af37;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #d4af37, transparent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 20px;
    line-height: 1;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 20px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    color: #777;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#d4af37, #f1c40f);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#f1c40f, #d4af37);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 72px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero h1 {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .menu-item {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .about-section .container,
    .contact-section .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-content,
    .about-image,
    .contact-info,
    .contact-form {
        transform: none !important;
        opacity: 1;
    }
    
    .about-image,
    .contact-form {
        margin-top: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 30, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .hero-content {
        padding: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content,
    .contact-info,
    .contact-form,
    .menu-item,
    .step-content {
        padding: 30px;
    }
    
    .step-tabs {
        flex-wrap: wrap;
    }
    
    .step-tab {
        padding: 15px 25px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .cart {
        width: 90%;
        right: 5%;
    }
    
    .cart-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .cta-button,
    .add-to-cart,
    .checkout-btn {
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .about-content,
    .contact-info,
    .contact-form,
    .menu-item,
    .step-content {
        padding: 25px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-hours {
        min-width: 100%;
    }
}
