@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300&family=Montserrat&family=Yellowtail&family=Oswald&family=Cabin:wght@600&family=Yellowtail&display=swap");

@font-face {
  font-family: "CurlzMT";
  src: url("../fonts/Curlz.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --accent-color: #ad1519;
  --text-color: #222222;
  --footer-bg-color: #222222;
  --link-color: #8b4513;
  --header-text-color: #8b4513;
  --header-font-family: "Dosis", sans-serif;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

img {
  object-fit: cover;
  object-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--header-text-color);
  font-family: var(--header-font-family);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #222222 0%, #333333 50%, #222222 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.logo {
  color: currentColor;
  font-family: "CurlzMT", cursive;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

nav a:hover,
nav a.active {
  background-color: #262827;
  color: var(--link-color);
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.language-selector a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  background: #f8f9fa;
  border: 2px solid transparent;
}

.language-selector a:hover {
  background: var(--link-color);
  color: white;
  transform: scale(1.1);
}

.language-selector a.active {
  background: var(--link-color);
  color: white;
  border-color: var(--link-color);
}

/* Hero Section */
.hero {
  height: calc(100vh - 118.2px);
}

.hero,
.page-hero,
.article-header {
  --header-text-color: #ffffff;
  background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.6)),
    var(--hero-image-url) center/cover;
  color: white;
  padding: 8rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content h1,
.page-hero h1,
.article-header h1 {
  display: flex;
  flex-direction: column;
  font-family: "curlzmt", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 small,
.page-hero h1 small,
.article-header h1 small {
  font-family: var(--header-font-family);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p,
.page-hero p,
.article-header p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section */
.cta-section,
.weekly-menu {
  background: linear-gradient(
    135deg,
    rgb(52, 73, 94) 0%,
    rgb(44, 62, 80) 50%,
    rgb(52, 73, 94) 100%
  );
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2,
.weekly-menu h3 {
  color: #ffd700;
}

.cta-section a:not(.cta-button),
.weekly-menu a:not(.cta-button) {
  color: #ffd700;
}

.cta-section p {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #c0392b);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  margin: 1rem;
}

.cta-button:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8f5f0;
  padding: 1rem 0;
}

.breadcrumbs a {
  color: var(--link-color);
  padding: 0;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  padding: 4rem 0 0 0;
}

.content-section,
.article-content,
.menu-category {
  margin-bottom: 4rem;
}

.content-section h2,
.article-content h2,
.wine-pairing h2,
.cta-section h2,
.content-section .cta-section h3,
.location-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.content-section .cta-section h3 {
  color: #ffd700;
}
.content-section h3,
.article-content h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.content-section a:not(.cta-button),
.gallery-category a:not(.cta-button),
.profile-content a:not(.cta-button) {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.intro-text {
  margin-bottom: 3rem;
  color: #555;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.location-card {
  display: flex;
  flex-direction: column;
}

.location-card small a:not(.cta-button) {
  color: var(--link-color);
  font-size: 90%;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Footer */
footer {
  --header-text-color: #ffffff;
  background-color: var(--footer-bg-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--link-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}
/* Mobile Responsive */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(22, 22, 22, 0.4);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-content {
    position: relative;
  }

  nav {
    order: 3;
    width: 100%;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #222222;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .profile-content {
    grid-template-columns: 1fr;
  }
}
