/*
Theme Name: Adenia Restaurant
Theme URI: https://adenia.mk
Author: Adenia
Description: Elegant and luxurious restaurant theme for Adenia - Struga. Supports Macedonian, English, Turkish, and Albanian languages.
Version: 1.0
Text Domain: adenia
License: GNU General Public License v2 or later
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --bg: #1a1614;
  --bg-card: #211d1a;
  --fg: #ede5d8;
  --primary: #d4a843;
  --primary-dark: #b8922e;
  --secondary: #2a2420;
  --muted: #8a7a6a;
  --border: #3a302a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--fg); }

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

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

/* ====== HEADER / NAV ====== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.site-logo {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.05em;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(237,229,216,0.7); font-weight: 400;
}
.main-nav a:hover, .main-nav a.current { color: var(--primary); }

.lang-switcher { display: flex; gap: 0.5rem; margin-left: 1.5rem; }
.lang-switcher a {
  font-size: 0.7rem; padding: 0.2rem 0.5rem;
  border: 1px solid var(--border); border-radius: 3px;
  color: var(--muted); text-transform: uppercase;
}
.lang-switcher a:hover, .lang-switcher a.active {
  color: var(--primary); border-color: var(--primary);
}

.mobile-toggle { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .main-nav.open { display: flex; }
  .lang-switcher { margin-left: 0; margin-top: 1rem; }
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,20,0.6), rgba(26,22,20,0.85));
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 2rem; }
.hero-subtitle {
  font-family: var(--font-elegant); font-size: 1.2rem; color: var(--primary);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
}
.hero h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: rgba(237,229,216,0.8); margin-bottom: 2rem; }

.btn {
  display: inline-block; padding: 0.8rem 2rem; font-family: var(--font-body);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  border: 1px solid var(--primary); color: var(--primary);
  transition: all 0.3s; cursor: pointer; background: transparent;
}
.btn:hover { background: var(--primary); color: var(--bg); }
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn + .btn { margin-left: 1rem; }

/* ====== SECTIONS ====== */
.section { padding: 5rem 0; }
.section-title {
  text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center; font-family: var(--font-elegant); font-size: 1.1rem;
  color: var(--primary); letter-spacing: 0.1em; margin-bottom: 3rem;
}
.gold-line {
  width: 60px; height: 2px; background: var(--primary);
  margin: 1rem auto 2rem;
}

/* ====== HIGHLIGHTS ====== */
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.highlight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212,168,67,0.1);
}
.highlight-card img { width: 100%; height: 250px; object-fit: cover; }
.highlight-card-body { padding: 1.5rem; }
.highlight-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.highlight-card p { color: var(--muted); font-size: 0.9rem; }

/* ====== INFO BAR ====== */
.info-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; padding: 3rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.info-item { text-align: center; }
.info-item h4 { color: var(--primary); font-size: 1rem; margin-bottom: 0.3rem; }
.info-item p { color: var(--muted); font-size: 0.9rem; }

/* ====== MENU PAGE ====== */
.menu-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.menu-categories button, .menu-categories a {
  padding: 0.5rem 1.5rem; font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer; transition: all 0.3s;
}
.menu-categories button:hover, .menu-categories button.active,
.menu-categories a:hover, .menu-categories a.active {
  border-color: var(--primary); color: var(--primary);
}

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 0;
}
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.menu-item-info { flex: 1; }
.menu-item h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.menu-item p { color: var(--muted); font-size: 0.85rem; }
.menu-item .price { font-family: var(--font-serif); color: var(--primary); font-size: 1.1rem; white-space: nowrap; margin-left: 1rem; }

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ====== ABOUT ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-grid img { width: 100%; height: 400px; object-fit: cover; border: 1px solid var(--border); }
.about-text h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p { color: rgba(237,229,216,0.8); margin-bottom: 1rem; font-size: 0.95rem; }
.about-text .elegant { font-family: var(--font-elegant); font-size: 1.2rem; color: var(--primary); font-style: italic; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

.map-container { margin-top: 3rem; }
.map-container iframe { width: 100%; height: 400px; border: 1px solid var(--border); filter: grayscale(0.7) contrast(1.1); }

/* ====== RESERVATIONS / CONTACT FORM ====== */
.form-container { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--fg);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 2rem; text-align: center;
}
.contact-card .icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.contact-card h4 { margin-bottom: 0.5rem; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--secondary); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--font-serif); color: var(--primary); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-col p, .footer-col a { color: var(--muted); font-size: 0.9rem; display: block; margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: var(--muted); }

.social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }
.social-links a { color: var(--muted); font-size: 1.2rem; }
.social-links a:hover { color: var(--primary); }

/* ====== ANIMATIONS ====== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ====== PAGE HEADER ====== */
.page-header {
  padding: 8rem 0 4rem; text-align: center;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--muted); font-family: var(--font-elegant); font-size: 1.1rem; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
}
