/* CSS Variables for Tattu Style */
:root {
    --bg-dark: #050505;
    --text-light: #e0e0e0;
    --accent-color: #d81b60; /* Deep pink/magenta representing cherry blossom by default */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, .brand {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
}

.ed-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

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

.mt-4 { margin-top: 4rem; }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.brand a {
    font-size: 2rem;
    letter-spacing: 4px;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-book {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
}

.btn-book:hover {
    color: var(--accent-color);
}

/* Hamburger Menu */
.menu-btn {
    width: 35px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001; /* Above fullscreen menu */
}

.menu-btn .line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: var(--transition-fast);
}

.menu-btn .line-1 { top: 0; }
.menu-btn .line-2 { bottom: 0; }

.menu-btn.open .line-1 {
    transform: translateY(9px) rotate(45deg);
}

.menu-btn.open .line-2 {
    transform: translateY(-10px) rotate(-45deg);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
}

.menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    text-align: center;
}

.main-nav li {
    margin: 2rem 0;
    overflow: hidden;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    display: inline-block;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.menu-footer {
    position: absolute;
    bottom: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    animation: panImage 30s linear infinite alternate;
}

@keyframes panImage {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-2%, -2%); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.line-indicator {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.line-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent-color);
    animation: lineDrop 2s infinite;
}

@keyframes lineDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* Editorial Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ed-text p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.link-arrow span {
    display: inline-block;
    transition: var(--transition-fast);
}

.link-arrow:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.link-arrow:hover span {
    transform: translateX(10px);
}

.ed-image-wrap {
    height: 600px;
    overflow: hidden;
}

.ed-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.ed-image-wrap:hover .ed-image {
    transform: scale(1.05);
}

/* Banner Section */
.banner-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.banner-text {
    position: relative;
    z-index: 2;
}

.banner-text h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #fff;
}

.btn-outline-gold {
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn-outline-gold:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Dish Grid */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.dish-card {
    text-align: center;
}

.dish-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.dish-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.dish-info p {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 6rem 0 3rem;
}

.footer-logo {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--accent-color);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Scroll Reveal Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpAnim 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.2s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.up { transform: translateY(60px); }
.scroll-reveal.left { transform: translateX(-60px); }

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 40px;
    display: flex;
    gap: 12px;
    z-index: 9999;
}

.theme-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0.5;
}

.theme-btn:hover, .theme-btn.active {
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .grid-2 { gap: 3rem; }
    .dish-grid { gap: 1.5rem; }
    .banner-text h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .header-container { padding: 0 1.5rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
    .dish-grid { grid-template-columns: 1fr; }
    .ed-image-wrap { height: 400px; }
    .hero-content h1 { font-size: 3rem; }
    .main-nav a { font-size: 2rem; }
}
