/* ============================================
   CAFENEAUA PIAȚA UNIRII - Iași
   Historic Café with Modern Vibes
   ============================================ */

:root {
    /* EUROPEAN CLASSIC - Ivory + Navy + Gold */
    --primary: #1E3A5F;       /* Navy */
    --secondary: #C9A227;     /* Gold */
    --accent: #DBC078;
    --cream: #FFFFF0;         /* Ivory */
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --gray: #5C6B7A;
    --dark: #1A2A3A;

    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Nunito', sans-serif;

    --shadow: 0 5px 25px rgba(0,0,0,0.1);
    --transition: all 0.4s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 500; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

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

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(10px);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; color: var(--cream); }
.nav-menu { display: flex; list-style: none; gap: 35px; }
.nav-menu a { color: var(--cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-menu a:hover { color: var(--accent); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(rgba(45, 24, 16, 0.6), rgba(45, 24, 16, 0.7)),
                url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?w=1920') center/cover fixed;
    color: var(--white);
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-subtitle { font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero h1 { margin-bottom: 25px; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Section */
.section { padding: 100px 0; }
.section-cream { background: var(--off-white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 15px; }
.section-header p { color: var(--gray); }
.divider { width: 60px; height: 2px; background: var(--accent); margin: 20px auto 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-image::after {
    content: 'Est. 2010';
    position: absolute; bottom: -20px; right: -20px;
    background: var(--secondary); color: var(--white);
    padding: 15px 25px; font-family: var(--font-heading);
}
.about-content h2 { margin-bottom: 25px; }
.about-content p { color: var(--gray); margin-bottom: 15px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 30px; }
.feature-icon { width: 70px; height: 70px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-icon i { font-size: 1.8rem; color: var(--secondary); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* Menu */
.menu-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.menu-category h3 { font-size: 1.5rem; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.menu-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed var(--cream); }
.menu-item-info h4 { font-size: 1.1rem; margin-bottom: 5px; }
.menu-item-info p { color: var(--gray); font-size: 0.9rem; }
.menu-price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--secondary); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }

/* Events */
.events-section { background: var(--primary); color: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.event-card { background: rgba(255,255,255,0.1); padding: 30px; text-align: center; }
.event-day { font-family: var(--font-heading); font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
.event-card h3 { margin-bottom: 10px; color: var(--white); }
.event-card p { color: rgba(255,255,255,0.7); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { margin-bottom: 30px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 25px; }
.contact-item i { font-size: 1.5rem; color: var(--secondary); width: 30px; }
.contact-item h4 { margin-bottom: 5px; }
.contact-item p { color: var(--gray); margin: 0; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 30px; }
.footer-content { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-about { max-width: 400px; }
.footer-about .logo { margin-bottom: 20px; display: inline-block; }
.footer-about p { color: rgba(255,255,255,0.7); }
.footer-links h4 { margin-bottom: 20px; color: var(--accent); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-preview { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
}
