/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #4c2d24;
  background: #fff8e6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: contain;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 248, 230, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Playfair Display", serif;
  color: #4c2d24;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4c2d24;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #8c5349;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fed061;
  opacity: 0.6;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #8c5349;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg,
      rgba(255, 248, 230, 0.97) 0%,
      rgba(140, 83, 73, 0.08) 100%
    ),
    url("arkaplan.webp") center center/cover no-repeat;
  background-size: cover;
  padding-top: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 180px;
  opacity: 0;
  transform: translateY(80px);
  animation: heroSlideUp 1.1s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s
    forwards;
}
@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #4c2d24;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(60px);
  animation: heroSlideUp 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.4s
    forwards;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(60px);
  animation: heroSlideUp 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.7s
    forwards;
}

.hero-buttons {
  margin-top: 1.1rem;
  opacity: 0;
  transform: translateY(60px);
  animation: heroSlideUp 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #8c5349;
  color: #fff8e6;
  box-shadow: 0 4px 15px rgba(140, 83, 73, 0.13);
  min-width: 220px;
  font-size: 1.2rem;
  padding: 16px 40px;
}

.btn-primary:hover {
  background: #4c2d24;
  color: #fed061;
  box-shadow: 0 6px 20px rgba(254, 208, 97, 0.18);
}

.btn-secondary {
  background: transparent;
  color: #8c5349;
  border: 2px solid #8c5349;
}

.btn-secondary:hover {
  background: #8c5349;
  color: #fff8e6;
  transform: translateY(-2px);
}

.hero-image {
  display: none;
}

.image-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #fff8e6 0%, #8c5349 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #4c2d24;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(254, 208, 97, 0.15);
}

.image-placeholder p {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* Section Styles */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  color: #8c5349;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #8c5349 0%, #fed061 100%);
  opacity: 0.7;
}

/* Menu Section */
.menu-section {
  padding: 5rem 0;
  background: #fff8e6;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(93, 64, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
}

.menu-item-image {
  height: 280px;
  overflow: hidden;
}

.menu-item-image .image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  font-size: 2rem;
}

.menu-item-content {
  padding: 0.8rem 1.2rem;
}

.menu-item-content h3 {
  font-family: "Playfair Display", serif;
  color: #4c2d24;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.menu-item-content p {
  color: #8c5349;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8c5349;
}

.menu-accordion {
  margin-top: 2.5rem;
}

.menu-panel {
  border-radius: 18px;
  background: rgba(140, 83, 73, 0.07);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 18px rgba(76, 45, 36, 0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.menu-panel.active,
.menu-panel:hover {
  box-shadow: 0 8px 32px rgba(76, 45, 36, 0.1);
}

.panel-header {
  width: 100%;
  background: #8c5349;
  color: #fff8e6;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.2rem 2rem;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.panel-header i {
  font-size: 1.5rem;
}

.panel-header::after {
  content: "\25BC";
  position: absolute;
  right: 2rem;
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: #fed061;
  opacity: 0.7;
}

.menu-panel.active .panel-header::after {
  transform: rotate(180deg);
}

.panel-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-height: 0;
  overflow: hidden;
  background: #fdf0d0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 2rem;
}

.menu-panel.active .panel-content {
  padding: 2rem;
  max-height: 6000px;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: #fff8e6;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.about-text {
  width: 100%;
  margin: 0 auto;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.about-image {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image .image-placeholder {
  width: 70%;
  height: 300px;
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-image .features {
  width: 30%;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 300px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: 100%;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: #8c5349;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(76, 45, 36, 0.1);
}

.feature i {
  font-size: 2rem;
  color: #fed061;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.feature h4 {
  color: #fed061;
  opacity: 0.8;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #fff8e6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info,
.contact-hours {
  display: contents;
}

.contact-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff8e6;
  border-radius: 10px;
  border: 2px solid #8c5349;
  transition: transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.contact-item-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
}

.contact-item h4 {
  margin: 0;
  text-align: center;
  width: auto;
  display: inline-block;
}

.contact-item p {
  text-align: center;
  margin: 0.5rem 0 0 0;
  width: 100%;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #8c5349;
  margin-top: 0.2rem;
}

.contact-form {
  background: #fff8e6;
  padding: 2rem;
  border-radius: 15px;
}

.contact-form h3 {
  font-family: "Playfair Display", serif;
  color: #8c5349;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #8c5349;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Poppins", sans-serif;
  background: #fff8e6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fed061;
}

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

.contact-hours {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Footer */
.footer {
  background: #5d4037;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #d7ccc8;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.footer-section p {
  color: #bcaaa4;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bcaaa4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d7ccc8;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #8d6e63;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #6d4c41;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem 0;
  border-top: 1px solid #6d4c41;
  color: #bcaaa4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .hamburger {
    display: flex;
  }
  .hamburger {
    display: flex;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2100;
    background: none;
    border: none;
  }
  .hamburger .close-icon {
    display: none;
    font-size: 2.2rem;
    color: #5d4037;
    cursor: pointer;
    position: absolute;
    top: -8px;
    right: -8px;
    background: none;
    z-index: 2200;
    transition: opacity 0.2s;
  }
  .hamburger.active .close-icon {
    display: block;
  }
  .hamburger.active .bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff8f0;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(93, 64, 55, 0.1);
    padding: 2rem 0;
    height: auto;
    min-height: unset;
    z-index: 2000;
  }

  .nav-menu.active {
    left: 0;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    background: rgba(255, 248, 240, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 120px;
  }

  .hero-image {
    padding: 1rem;
    margin-top: 2rem;
  }

  .image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 200px;
    font-size: 2rem;
  }

  .about-section {
    padding: 2rem 0;
  }
  .about-content {
    display: block;
    padding: 0 8px;
    box-sizing: border-box;
    overflow: visible;
    word-break: break-word;
  }
  .about-image {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    word-break: break-word;
    gap: 12px;
  }
  .about-text {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    word-break: break-word;
  }
  .about-image .image-placeholder,
  .about-image .features {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    box-sizing: border-box;
    overflow: visible;
    word-break: break-word;
    height: auto;
  }
  .about-image .image-placeholder {
    height: 180px;
    font-size: 2rem;
  }

  .about-text .image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    height: 180px !important;
    font-size: 2rem !important;
  }
  .about-image .features {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    white-space: normal;
    height: auto;
    margin-top: 12px;
  }
  .feature {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.3rem;
    margin: 0 auto;
    overflow-x: hidden;
    white-space: normal;
    font-size: 0.92rem;
  }
  .feature h4 {
    font-size: 1rem;
  }
  .feature i {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-hours {
    margin-top: 0;
  }

  .features-horizontal {
    flex-direction: column !important;
  }

  .features-horizontal .feature {
    margin: 0.5rem 0 !important;
    flex: none !important;
  }
}

@media (max-width: 480px) {
  .nav-logo h2 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    font-weight: 600;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn {
    width: 100%;
    max-width: 200px;
    margin-bottom: 0.5rem;
  }
  .image-placeholder {
    height: 180px;
    font-size: 1.5rem;
  }
  .image-placeholder p {
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .menu-item {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .menu-item-image {
    height: 200px;
  }
  .menu-item-content {
    padding: 0.3rem 0.5rem;
  }
  .menu-item-image,
  .menu-item-image .image-placeholder {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .contact-form {
    padding: 1rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .contact-item i {
    margin-top: 0;
  }
  .about-image .image-placeholder {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .menu-item-content h3 {
    font-size: 1.1rem;
  }

  .menu-item-content p {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link {
    padding: 10px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-item {
    cursor: pointer;
  }

  .contact-item {
    cursor: pointer;
  }
}
html {
  scroll-behavior: smooth;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.floating-instagram {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 70px;
  height: 70px;
  background: #8c5349;
  color: #fed061;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(140, 83, 73, 0.18);
  z-index: 1200;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  font-size: 2.8rem;
  cursor: pointer;
  text-decoration: none;
}
.floating-instagram:hover {
  background: #fed061;
  color: #4c2d24;
  box-shadow: 0 8px 24px rgba(254, 208, 97, 0.25);
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .floating-instagram {
    left: 16px;
    bottom: 16px;
    width: 53px;
    height: 53px;
    font-size: 1.8rem;
  }
}

.franchise-section {
  background: #fff8e6;
  border-top: 2px solid #fed061;
  border-bottom: 2px solid #fed061;
  box-shadow: 0 8px 32px rgba(254, 208, 97, 0.04);
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.franchise-section .franchise-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 3.2rem;
  color: #8c5349;
  filter: drop-shadow(0 2px 8px rgba(140, 83, 73, 0.12));
  animation: popIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.franchise-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #8c5349;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(140, 83, 73, 0.07);
}
.franchise-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-franchise {
  background: #8c5349;
  color: #fff8e6;
  border-radius: 50px;
  padding: 18px 56px;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(140, 83, 73, 0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, box-shadow 0.4s;
  letter-spacing: 1.2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.btn-franchise:hover {
  background: #4c2d24;
  color: #fed061;
  box-shadow: 0 8px 32px 0 #fed061, 0 0 16px 4px #8c5349;
  transform: translateY(-3px) scale(1.07);
  filter: brightness(1.08) drop-shadow(0 0 8px #fed061);
}
@media (max-width: 600px) {
  .franchise-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .franchise-title {
    font-size: 1.1rem;
  }
  .btn-franchise {
    padding: 13px 24px;
    font-size: 1rem;
  }
  .franchise-section .franchise-icon {
    font-size: 2.1rem;
  }
}
.site-logo {
  height: 60px;
  margin-right: 22px;
  display: inline-block;
}
.site-logo-footer {
  height: 100px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.footer-section p {
  font-weight: 600;
}
@media (max-width: 600px) {
  .site-logo {
    height: 54px;
    margin-right: 12px;
  }
  .site-logo-footer {
    height: 64px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 0 0 8px 8px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 0.7em 1.5em;
  color: #5d4037;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.92em;
  border-radius: 0;
  background: linear-gradient(135deg, #fff8e6 0%, #fff 100%);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(141, 110, 99, 0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.dropdown-menu a:hover {
  background: linear-gradient(135deg, #8d6e63 0%, #6d4c41 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(141, 110, 99, 0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-height: 780px) and (min-height: 480px) {
  .about-image,
  .about-image .image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
}
