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

/* CSS Variables */
:root {
  --primary-brown: #8b7355;
  --primary-brown-dark: #6d5845;
  --text-dark: #333;
  --text-light: #555;
  --text-gray: #666;
  --bg-light-gray: #f5f5f5;
  --bg-white: #fff;
  --bg-dark: #2c2c2c;
  --border-gray: #ddd;
  --border-light: #e0e0e0;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 8px 16px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: clamp(50px, 12vw, 100px);
  width: auto;
  object-fit: contain;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link:hover img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-brown);
}

.order-btn {
  background-color: var(--primary-brown) !important;
  color: var(--bg-white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: var(--primary-brown-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
} /* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  text-align: center;
  padding: 2rem;
  position: relative;
  margin-top: calc(-80px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 100%;
}

.scroll-chevron {
  position: absolute;
  bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary-brown);
  text-decoration: none;
  animation: bounce 2s infinite;
}

.hero-logo {
  width: 85%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

.scroll-chevron:hover {
  color: var(--primary-brown-dark);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
} /* Sections */
.section {
  width: 100%;
  padding: 6rem 2rem;
  position: relative;
  scroll-margin-top: 100px;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section.alt {
  background-color: var(--bg-light-gray);
}
.section-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--border-light);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #000;
  font-weight: 700;
}

.section-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--border-light);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-content h3 {
  font-size: 1.3rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.section-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}
.info-block h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.info-block p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.email-link {
  text-decoration: none;
  color: var(--bg-white);
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-brown);
}

.phone-link {
  text-decoration: none;
  color: var(--bg-white);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary-brown);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-left {
  text-align: left;
  flex: 0 0 auto;
}

.footer-right {
  text-align: right;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  text-align: right;
}

.contact-line {
  color: var(--bg-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-line .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--bg-white);
}

.footer-logo {
  height: clamp(70px, 15vw, 120px);
  width: auto;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  color: var(--bg-white);
}
.footer-logo-link:hover img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-number {
    font-size: 2.5rem;
  }

  .section-content h2 {
    font-size: 1.8rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .footer-contact {
    align-items: center;
  }

  .contact-line {
    justify-content: center;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.6rem 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .section-content h2 {
    font-size: 1.5rem;
  }

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