/* ==================== Marquee Section ==================== */
.marquee-section {
    padding: 2rem 0;
    background: var(--darker);
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 2rem;
    color: var(--gray);
}

.marquee-content .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== About Section ==================== */
.about-section {
    padding: 10rem 4rem;
}

.section-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary);
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.img-stack {
    position: relative;
    height: 600px;
}

.img-wrapper {
    position: absolute;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    z-index: 1;
}

.img-2 {
    bottom: 50px;
    right: 0;
    width: 55%;
    height: 250px;
    z-index: 2;
}

.img-3 {
    bottom: 0;
    left: 10%;
    width: 45%;
    height: 200px;
    z-index: 3;
    border: 5px solid var(--dark);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-description p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ==================== Showcase Section ==================== */
.showcase-section {
    padding: 0 4rem 6rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item.large {
    grid-column: span 2;
}

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

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ==================== Menu Section ==================== */
.menu-section {
    padding: 8rem 4rem;
    background: var(--darker);
}

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

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

.menu-header h2 {
    font-size: 3rem;
}

.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.menu-tabs {
    display: flex;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 50px;
}

.menu-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: none;
    color: var(--gray);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    color: var(--dark);
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.menu-item-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.menu-item-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 1rem;
}
