/* =============================================
   URFA 1991 — Professional Kebab Restaurant
   Color Theme: Dark Burgundy + Gold + Cream
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --burgundy-dark: #3B1F1F;
    --burgundy: #4A2328;
    --burgundy-light: #5C2E34;
    --gold: #C8A45A;
    --gold-light: #D4B76A;
    --gold-dark: #A6873E;
    --cream: #F5F0E8;
    --cream-dark: #E8DFD0;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --text-light: #F5F0E8;
    --text-muted: #8A7A6C;
    --shadow: 0 4px 30px rgba(59, 31, 31, 0.15);
    --shadow-gold: 0 4px 30px rgba(200, 164, 90, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(59, 31, 31, 0.97);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    transition: var(--transition);
    border-radius: 4px;
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

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

.nav-links a {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-dark);
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 164, 90, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(92, 46, 52, 0.3) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A45A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(59,31,31,0.3) 0%, rgba(59,31,31,0.1) 50%, rgba(59,31,31,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 28px;
    border-radius: 12px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
    color: var(--gold);
    font-size: 10px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--cream-dark);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--burgundy-dark);
}

.hero-btn:hover::before {
    left: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(200, 164, 90, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: wheelScroll 1.5s infinite;
}

@keyframes wheelScroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Section Common ---------- */
.section {
    padding: 100px 0;
}

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

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--burgundy-dark);
    margin-bottom: 16px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-divider .divider-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.title-divider .divider-icon {
    color: var(--gold);
    font-size: 12px;
}

/* ---------- About Section ---------- */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.feature i {
    font-size: 1.8rem;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(200,164,90,0.1), rgba(200,164,90,0.05));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(200,164,90,0.2);
}

.feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-placeholder {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 380px;
}

.about-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.6;
}

.about-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
}

.about-years {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1rem !important;
    color: var(--gold) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ---------- Menu Section ---------- */
.menu-section {
    background: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(59,31,31,0.06);
    border: 1px solid rgba(200,164,90,0.08);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.menu-card h3 {
    font-size: 1.3rem;
    color: var(--burgundy-dark);
    margin-bottom: 12px;
}

.menu-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.menu-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(200,164,90,0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    background: var(--white);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.7;
}

.gallery-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Coming Soon Section ---------- */
.coming-soon-section {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,164,90,0.06) 0%, transparent 70%);
    animation: comingSoonGlow 6s ease-in-out infinite alternate;
}

@keyframes comingSoonGlow {
    0% { transform: translate(-5%, 0); }
    100% { transform: translate(5%, 0); }
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.coming-soon-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    background: rgba(200,164,90,0.12);
    border: 2px solid rgba(200,164,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,164,90,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(200,164,90,0.1); }
}

.coming-soon-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.coming-soon-content h2 {
    font-size: 2.4rem;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.coming-soon-content p {
    font-size: 1.05rem;
    color: var(--cream-dark);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.8;
}

.coming-soon-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.coming-soon-dots span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotBlink 1.5s infinite;
}

.coming-soon-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.coming-soon-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotBlink {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ---------- Contact Section ---------- */
.contact-section {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(59,31,31,0.04);
    border: 1px solid rgba(200,164,90,0.08);
}

.contact-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-card h4 {
    font-size: 0.9rem;
    color: var(--burgundy);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-left: 24px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link i {
    font-size: 1.1rem;
    color: var(--gold);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.social-link:hover i {
    color: var(--burgundy-dark);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid rgba(200,164,90,0.2);
}

.map-container iframe {
    display: block;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--burgundy-dark);
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 16px;
    border-radius: 6px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(200,164,90,0.3);
    margin: 0 auto 24px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.5);
    letter-spacing: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(59, 31, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .coming-soon-content h2 {
        font-size: 1.8rem;
    }

    .contact-social {
        padding-left: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-btn {
        padding: 14px 36px;
        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-content h2 {
        font-size: 1.5rem;
    }
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
