/* Bendra fontų stilistika */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff8f0; /* šviesus fonas */
  color: #4b3b1b; /* tamsesnė ruda */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Logo */
.logo {
  width: 70px;
  height: auto;
  margin-right: 15px;
}

/* Header fono spalva ir stilius */
.header-bg {
  background-color: #633001; /* alyvuogių žalia */
  color: #fff;
  box-shadow: 0 2px 6px rgba(99,48,1,0.3);
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Nav nuorodos */
.custom-nav-link {
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color 0.3s;
}

.custom-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffcba4;
  transition: width 0.3s;
}

.custom-nav-link:hover::after,
.custom-nav-link.active::after {
  width: 100%;
}

/* Patvirtinti mygtukas */
.btn-success {
  background-color: #808000;
  border-color: #808000;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 0.6;
  transition: background-color 0.3s ease, box-shadow 0.5s ease;
  color: #fff;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #633001;
  box-shadow: 0 0 12px #633001;
  color: #ffcba4;
}

/* Hero sekcija */
.hero {
  background-image: url('./assets/pictures/hero-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #633001;
  text-align: center;
  padding: 5rem 1rem;
}

/* Add a semi-transparent background to text for better readability */
.hero .container {
  background-color: rgb(255, 244, 230, 0.8)
; /* White with 80% opacity */
  padding: 3rem;
  border-radius: 1rem;
  display: inline-block;
}


/* Meniu kortelės (grupės maisto patiekalų) */
.menu-card {
  background-color: #fff4e6; /* labai šviesi persiko atspalvis */
  border: 1px solid #633001; /* alyvuogių žalia */
  border-radius: 1rem;
  box-shadow: 0 3px 8px rgba(99,48,1,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(99,48,1,0.35);
}

/* Vieta paveikslėliui */
.menu-image {
  width: 100%;
  max-width: 300px;
  height: 180px;
  background-color: #f7d8b3; /* šviesesnis persiko fonas */
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #633001;
  font-weight: 600;
  user-select: none;
}

/* Section titulinis */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #633001; /* tamsi ruda */
  border-bottom: 3px solid #808000; /* alyvuogių žalia */
  padding-bottom: 0.3rem;
  max-width: max-content;
  margin: 2rem auto 2rem auto;
}

.menu-title {
    color: #6b3e26;         /* ruda spalva */
    font-weight: bold;
    text-align: center;
}

/* Patiekalo pavadinimas (pvz. Kibinai, Torčiukai) */
.dish-type {
    color: #6b3e26;         /* ruda spalva */
    font-weight: bold;
}

/* Kontaktų info – šviesesnis rudos atspalvis */
.contact-info-light {
  background-color: #f3e6d5; /* labai šviesi ruda, švelni */
  color: #633001; /* tamsi ruda tekstui */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 3px 8px rgba(99, 48, 1, 0.15);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info-light h2 {
  margin-bottom: 1rem;
}

.contact-info-light p {
  margin-bottom: 0.5rem;
}

/* Kontaktų info - bendras stilizavimas */
.contact-info h3 {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #633001;
}

.contact-info p a {
  color: #808000;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info p a:hover {
  color: #ffcba4;
  text-decoration: underline;
}

/* Formos */
form .form-control {
  border-radius: 0.6rem;
  border: 1.5px solid #808000;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form .form-control:focus {
  border-color: #633001;
  box-shadow: 0 0 8px #633001;
}

form label {
  font-weight: 600;
  color: #633001;
}

.form-check-label {
  font-size: 0.9rem;
  color: #4b3b1b;
}


/* Footer stilius */
.footer-bg {
  background-color: #633001;
  color: #ffcba4;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 1rem 0;
  text-align: center;
  margin-top: 3rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-card {
    max-width: 100%;
  }
  .menu-image {
    height: 150px;
  }
}
