/*
Theme Name: Eskandar Theme
Theme URI: https://eskandarkebab.ir
Author: Eskandar Kebab
Description: Restaurant theme for Eskandar Kebab
Version: 1.0.0
Text Domain: eskandar-theme
License: GPL v2 or later
*/

:root {
    --eskandar-red: #8B0000;
    --eskandar-gold: #C5A059;
    --eskandar-dark: #1A1A1A;
    --eskandar-cream: #F9F5F0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--eskandar-cream);
    color: var(--eskandar-dark);
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lalezar', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* ========== NAVBAR - Glass Effect ========== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 0;
    background: rgba(26, 10, 10, 0.55);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.navbar.scrolled {
    background: rgba(255, 252, 248, 0.88);
    backdrop-filter: blur(20px) saturate(2);
    -webkit-backdrop-filter: blur(20px) saturate(2);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.55rem 0;
}

.navbar .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Logo */
.navbar .logo {
    font-size: 1.5rem;
    font-family: 'Lalezar', sans-serif;
    color: var(--eskandar-gold);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.03em;
    transition: color 0.3s, text-shadow 0.3s;
    flex-shrink: 0;
}

.navbar.scrolled .logo {
    color: var(--eskandar-red);
    text-shadow: none;
}

/* Nav menu desktop */
.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    background: transparent;
    z-index: 999;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.45rem 0.85rem;
    border-radius: 0.4rem;
    transition: color 0.25s, background 0.25s;
    display: block;
    letter-spacing: 0.01em;
}

.navbar.scrolled .nav-menu li a {
    color: #2d2d2d;
}

.nav-menu li a:hover {
    color: var(--eskandar-gold);
    background: rgba(197, 160, 89, 0.1);
}

.navbar.scrolled .nav-menu li a:hover {
    color: var(--eskandar-red);
    background: rgba(139, 0, 0, 0.07);
}

/* Nav CTA button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--eskandar-red);
    color: white !important;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #a00000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.4);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--eskandar-gold);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1100;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.3s;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--eskandar-red);
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 252, 248, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        border-right: 1px solid rgba(197, 160, 89, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--eskandar-dark) !important;
        font-size: 1.05rem;
        border-radius: 0;
        background: transparent !important;
    }

    .nav-menu li a:hover {
        background: rgba(197, 160, 89, 0.07) !important;
        color: var(--eskandar-red) !important;
        padding-right: 2rem;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar .container {
        position: relative;
    }
}

/* ========== HERO - Full Screen Overlay ========== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.hero-subtitle {
    color: var(--eskandar-gold);
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
    color: white;
    font-size: 4.5rem;
    font-family: 'Lalezar', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--eskandar-red);
    color: white;
    padding: 0.85rem 2.25rem;
    border-radius: 0.4rem;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--eskandar-gold);
    color: var(--eskandar-gold);
    padding: 0.85rem 2.25rem;
    border-radius: 0.4rem;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--eskandar-gold);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    z-index: 2;
    animation: scrollHint 2s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    z-index: 2;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollHint {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-content {
        padding: 6rem 1rem 3.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero::after,
    .hero::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }
}

.about {
    padding: 5rem 0;
    background: var(--eskandar-cream);
}

.about .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -1rem;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 0.75rem;
    transform: rotate(-3deg);
}

.about-image img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-badge .stars {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.about-badge h4 {
    font-size: 1.5rem;
    color: var(--eskandar-dark);
}

.about-badge p {
    color: #6B7280;
    font-size: 0.875rem;
}

.about-content .tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-content .tag span:first-child {
    width: 3rem;
    height: 0.25rem;
    background: var(--eskandar-red);
}

.about-content .tag span:last-child {
    color: var(--eskandar-red);
    font-weight: bold;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--eskandar-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-feature {
    border-right: 4px solid var(--eskandar-gold);
    padding-right: 1rem;
}

.about-feature h4 {
    font-size: 1.25rem;
    color: var(--eskandar-dark);
}

.about-feature p {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-image img {
        height: 350px;
    }

    .about-badge {
        bottom: -1rem;
        right: -0.5rem;
        padding: 1rem;
    }

    .about-badge h4 {
        font-size: 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

.menu-section {
    padding: 6rem 0;
    background: white;
}

.menu-section .container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    color: var(--eskandar-gold);
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--eskandar-dark);
    font-family: 'Lalezar', sans-serif;
    margin-bottom: 1rem;
}

.section-header .divider {
    width: 6rem;
    height: 0.25rem;
    background: var(--eskandar-red);
    margin: 0 auto;
    border-radius: 9999px;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    font-family: 'Lalezar', sans-serif;
    color: var(--eskandar-red);
    border-bottom: 2px solid #F3F4F6;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background 0.3s;
}

.menu-item:hover {
    background: #F9FAFB;
}

.menu-item-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(197, 160, 89, 0.5);
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed #D1D5DB;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    font-size: 1.25rem;
    font-family: 'Lalezar', sans-serif;
    color: var(--eskandar-dark);
}

.menu-item-header .price {
    color: var(--eskandar-red);
    font-weight: bold;
    font-size: 1.125rem;
}

.menu-item-content p {
    color: #6B7280;
    font-size: 0.875rem;
}

.menu-item .popular-badge {
    display: inline-block;
    background: var(--eskandar-gold);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.125rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .menu-item {
        padding: 0.75rem;
    }

    .menu-item-image {
        width: 70px;
        height: 70px;
    }

    .menu-item-header h4 {
        font-size: 1rem;
    }

    .menu-item-header .price {
        font-size: 0.875rem;
    }
}

/* Ambience Section */
.ambience {
    padding: 5rem 0;
    background: white;
}

.ambience .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ambience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ambience-item {
    position: relative;
    height: 280px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.ambience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ambience-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .ambience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ambience-grid {
        grid-template-columns: 1fr;
    }
}

/* No Image Placeholder */
.no-image {
    width: 96px;
    height: 96px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.gallery {
    padding: 5rem 0;
    background: var(--eskandar-dark);
}

.gallery .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery .section-header h2 {
    color: var(--eskandar-gold);
}

.gallery .section-header p {
    color: #9CA3AF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.6;
}

.gallery-item .caption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: white;
    font-family: 'Lalezar', sans-serif;
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .caption {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 3rem 0;
    }

    .gallery-item {
        height: 250px;
    }
}

.contact {
    padding: 5rem 0;
    background: white;
}

.contact .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--eskandar-cream);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.875rem;
    font-family: 'Lalezar', sans-serif;
    color: var(--eskandar-dark);
    margin-bottom: 2rem;
    border-right: 4px solid var(--eskandar-red);
    padding-right: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
}

.contact-item:hover {
    background: #F3F4F6;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eskandar-red);
    font-size: 1.25rem;
}

.contact-item h4 {
    font-weight: bold;
    color: var(--eskandar-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4B5563;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #E5E7EB;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #4B5563;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--eskandar-red);
    border-color: var(--eskandar-red);
    color: white;
}

.contact-map {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.contact-map:hover img {
    filter: grayscale(0%);
}

.contact-map .map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-map .map-overlay .pin {
    color: var(--eskandar-red);
    font-size: 3rem;
    animation: bounce 2s infinite;
    margin-bottom: 1rem;
}

.contact-map .map-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-family: 'Lalezar', sans-serif;
    margin-bottom: 0.5rem;
}

.contact-map .map-overlay .coords-display {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    direction: ltr;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map .map-overlay h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-item .icon {
        flex-shrink: 0;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

.footer {
    background: var(--eskandar-dark);
    color: white;
    padding: 3rem 0;
    border-top: 1px solid #374151;
}

.footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-brand h2 {
    font-size: 2rem;
    font-family: 'Lalezar', sans-serif;
    color: var(--eskandar-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #6B7280;
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--eskandar-red);
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
    margin-top: 1.5rem;
}

.footer-links a {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--eskandar-gold);
}

.footer-copyright {
    color: #4B5563;
    font-size: 0.75rem;
    margin-top: 1rem;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--eskandar-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 40;
}

.scroll-top.visible {
    display: flex;
}