/*
Theme Name: Sushi Tale
Theme URI: https://sushitale.com/
Author: Sushi Tale Developer
Description: A premium restaurant theme for Sushi Tale.
Version: 1.5
Text Domain: sushitale
*/

:root {
    --primary: #A93B2F;
    --dark: #000000;
    --light-dark: #080808;
    --border-color: #1a1a1a;
    --grey: #888888;
    --white: #ffffff;
    --font-h: 'Playfair Display', serif;
    --font-b: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: var(--font-b); 
    color: var(--dark); 
    background: var(--white); 
    line-height: 1.6;
    overflow-x: hidden;
}

.reveal { opacity: 0; transform: translateY(30px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0; width: 100%; height: 90px;
    display: flex; align-items: center; z-index: 1000;
    transition: var(--transition); padding: 0 5%;
    color: var(--white);
}

.header-scrolled {
    height: 70px; background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); color: var(--dark);
}

.header-inner { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-h); font-size: 1.5rem; letter-spacing: 5px; font-weight: 700; text-transform: uppercase; }
.logo a { color: inherit; text-decoration: none; }

.nav-links-container { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { text-transform: uppercase; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: inherit; text-decoration: none; }

.btn-res {
    background: var(--white); color: var(--dark); padding: 12px 28px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer; transition: var(--transition); font-weight: 600;
}
.header-scrolled .btn-res { background: var(--dark); color: var(--white); }
.btn-res:hover { background: var(--primary) !important; color: var(--white) !important; }

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.1)), 
                url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.hero h1 { font-family: var(--font-h); font-size: clamp(2.5rem, 6vw, 4.5rem); max-width: 900px; margin-bottom: 20px; font-weight: 400; }

/* --- Enhanced Menu Cards Section --- */
.menu-cards-section {
    background: var(--dark);
    padding: 80px 5%;
    border-bottom: 1px solid var(--border-color);
}

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

.menu-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
    padding: 50px 45px;
    border: 1px solid #111;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    border-color: var(--primary);
    background: #0a0a0a;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-text h3 {
    font-family: var(--font-h);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.card-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey);
    font-weight: 600;
    transition: 0.4s;
}

.menu-card:hover .card-text span {
    color: var(--white);
    letter-spacing: 4px;
}

.card-icon {
    width: 45px;
    height: 45px;
    color: #333;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1px;
}

.menu-card:hover .card-icon {
    color: var(--primary);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(169, 59, 47, 0.3));
}

/* --- Visit Section --- */
.visit-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; background: var(--dark); color: var(--white); }
.visit-info { padding: 8% 10%; display: flex; flex-direction: column; justify-content: center; }
.visit-info h2 { font-family: var(--font-h); font-size: 3.5rem; margin-bottom: 50px; font-weight: 400; text-transform: uppercase; letter-spacing: 4px; color: var(--primary); }

.hours-item { margin-bottom: 60px; }
.hours-item h3 { font-family: var(--font-h); font-size: 1.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.last-call { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 25px; font-weight: 600; }
.schedule-list { list-style: none; border-left: 1px solid #333; padding-left: 25px; }
.schedule-list li { margin-bottom: 12px; display: flex; flex-direction: column; }
.day-label { font-size: 11px; text-transform: uppercase; color: var(--grey); letter-spacing: 2px; margin-bottom: 4px; }
.time-value { font-family: var(--font-h); font-size: 1.3rem; letter-spacing: 1px; }

.address-box { margin-top: 20px; border-top: 1px solid #222; padding-top: 40px; }
.address-box a { color: var(--white); text-decoration: none; transition: 0.3s; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Experience Section --- */
.experience-section { padding: 140px 5% 120px; background: var(--white); text-align: center; }
.experience-header h2 { font-family: var(--font-h); font-size: 3.2rem; margin-bottom: 25px; font-weight: 400; }
.experience-header p { 
    font-family: var(--font-h);
    font-size: 1.4rem; 
    color: var(--grey); 
    max-width: 700px; 
    margin: 0 auto 100px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.exp-card { position: relative; height: 550px; overflow: hidden; background: #000; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: var(--transition); }
.exp-content { position: absolute; bottom: 0; left: 0; padding: 40px; color: var(--white); text-align: left; transform: translateY(20px); transition: var(--transition); }
.exp-card:hover .exp-content { transform: translateY(0); }
.exp-card:hover img { transform: scale(1.1); opacity: 0.5; }

/* --- Refined Footer --- */
.site-footer { background: var(--dark); color: var(--white); padding: 120px 5% 40px; border-top: 1px solid var(--border-color); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 100px; }

.footer-logo { font-family: var(--font-h); font-size: 2rem; display: block; letter-spacing: 8px; text-transform: uppercase; margin-bottom: 25px; }
.footer-brand p { color: var(--grey); font-size: 13px; line-height: 2; max-width: 320px; }

.footer-column h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); margin-bottom: 35px; font-weight: 600; }

/* Dynamic Social List Styling for "Connect" Column */
.footer-social-list { list-style: none; padding: 0; margin: 0; }
.footer-social-list li { margin-bottom: 15px; }
.footer-social-list a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}
.footer-social-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}
.footer-social-list a:hover { color: var(--white); padding-left: 5px; }
.footer-social-list a:hover::after { width: 100%; }

/* General Footer Links (Navigation column) */
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 15px; }
.footer-column a { color: #999; text-decoration: none; font-size: 12px; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.footer-column a:hover { color: var(--white); }

.footer-contact-info { color: var(--grey); font-size: 13px; line-height: 1.8; }
.footer-phone { 
    display: block; 
    margin-top: 20px; 
    font-size: 1.6rem !important; 
    color: var(--primary) !important; 
    font-family: var(--font-h);
    text-decoration: none;
    transition: var(--transition);
}
.footer-phone:hover { transform: scale(1.05); opacity: 0.9; }

.footer-bottom { border-top: 1px solid #111; padding-top: 40px; display: flex; justify-content: space-between; font-size: 10px; color: #444; text-transform: uppercase; letter-spacing: 2px; }

/* --- Mobile Menu Logic --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background-color: currentColor; transition: var(--transition); }
.mobile-only-btn { display: none; margin-top: 40px; width: 100%; }

/* --- Responsive Layouts --- */
@media (max-width: 1024px) {
    .visit-section { grid-template-columns: 1fr; }
    .map-container { height: 450px; order: -1; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: inline-block; }
    
    .nav-links-container {
        position: fixed; top: 0; right: -100%; width: 85%; height: 100vh; background: var(--white);
        padding: 120px 40px; flex-direction: column; transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1); z-index: 1500; display: flex;
    }
    .nav-links-container.active { right: 0; }
    .nav-menu { flex-direction: column; gap: 30px; }
    .nav-menu a { color: var(--dark) !important; font-size: 18px !important; }
    
    .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--dark); }
    .menu-toggle.active span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); background: var(--dark); }
    
    .hero h1 { font-size: 2.2rem; }
    .menu-grid { grid-template-columns: 1fr; gap: 15px; }
    .menu-card { padding: 40px 30px; }
    .experience-section { padding: 80px 5%; }
    .experience-grid { grid-template-columns: 1fr; }
    .exp-card { height: 400px; }
    
    .footer-top { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-brand p { margin: 0 auto 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}