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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdf6e3;
  color: #3d2b1f;
}

/* NAV */
nav {
  background-color: #7b4f2e;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

nav .logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f9e4b7;
  padding: 1rem 0;
  text-decoration: none;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

nav ul li a {
  display: block;
  color: #f9e4b7;
  text-decoration: none;
  padding: 1.1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255,255,255,0.1);
  border-bottom-color: #f9c74f;
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #b5651d 0%, #7b4f2e 60%, #4a2c17 100%);
  color: #fdf6e3;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero .emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: #f9c74f;
  color: #3d2b1f;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* MAIN */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2rem;
  color: #7b4f2e;
  margin-bottom: 1.5rem;
  border-left: 5px solid #f9c74f;
  padding-left: 0.75rem;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid #b5651d;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.15rem;
  color: #7b4f2e;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a4032;
}

/* FUN FACTS */
.fact-list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.fact-list li {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #3d2b1f;
}

.fact-list li .fact-num {
  background: #7b4f2e;
  color: #f9e4b7;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ABOUT */
.about-block {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.97rem;
  color: #3d2b1f;
}

.about-block p + p {
  margin-top: 1rem;
}

/* CONTACT */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #7b4f2e;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #c9a87a;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #3d2b1f;
  background: #fffdf8;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #7b4f2e;
  box-shadow: 0 0 0 3px rgba(123,79,46,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: #7b4f2e;
  color: #f9e4b7;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: #5a3620;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #4a2c17;
  color: #c9a87a;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.88rem;
  margin-top: 4rem;
}

footer a {
  color: #f9c74f;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* LANG SWITCHER */
.lang-switcher {
  position: relative;
  padding: 0 0.5rem;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  background: transparent;
  border: 1px solid #f9e4b7;
  color: #f9e4b7;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  font-family: inherit;
}

.lang-dropdown-btn:hover {
  background: #f9c74f;
  border-color: #f9c74f;
  color: #3d2b1f;
}

.lang-arrow {
  font-size: 0.65rem;
  opacity: 0.8;
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #3d2b1f;
  border: 1px solid rgba(249, 228, 183, 0.4);
  border-radius: 8px;
  padding: 0.3rem 0;
  list-style: none;
  min-width: 150px;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.lang-dropdown-menu.open {
  display: block;
}

.lang-dropdown-menu li button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #f9e4b7;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-dropdown-menu li button:hover,
.lang-dropdown-menu li button.active {
  background: #f9c74f;
  color: #3d2b1f;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0.5rem;
  }
  .hero h1 { font-size: 2rem; }
  .hero .emoji { font-size: 3.5rem; }
}
