/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Alegreya Sans', sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #202020;
}

.main-nav-wrapper {
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

#logo a {
  font-family: 'Alegreya', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 72px;
    font-family: 'Alegreya Sans', sans-serif;

}

#main-menu ul {
  display: flex;
}

#main-menu ul li a {
  display: block;
  padding: 0 15px;
  font-size: 18px;
  font-family: 'Alegreya', serif;
  color: #cccccc;
  line-height: 72px;
  transition: color 0.2s;
}

#main-menu ul li a:hover,
#main-menu ul li.current a {
  color: #ffffff;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('./images/drew-coffman-1872.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-inner {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 760px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-top-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-heading {
  font-family: 'Alegreya', serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 16px;
  border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-accent {
  background: #ae9768;
  color: #ffffff;
  border-color: #ae9768;
}

.btn-accent:hover {
  background: #ffffff;
  color: #333333;
  border-color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #333333;
}

/* ============================================================
   TWO-COLUMN LAYOUT
============================================================ */
.two-col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.col-half {
  width: 50%;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-text {
  padding: 40px 50px;
}

.col-text h2 {
  font-family: 'Alegreya', serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
}

.col-text p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 16px;
}

/* ============================================================
   ICON LIST
============================================================ */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #444444;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ae9768;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ae9768;
  font-size: 12px;
  flex-shrink: 0;
  text-align: center;
  line-height: 32px;
}

/* ============================================================
   SECTION: WHO WE ARE
============================================================ */
.section-who {
  padding: 90px 0 60px;
}

/* ============================================================
   SECTION: OUR LOCATION
============================================================ */
.bg-warm {
  background: #f7f4ef;
}

.section-location {
  padding: 90px 0;
}

/* ============================================================
   SECTION: OUR BAKING
============================================================ */
.section-baking {
  padding: 70px 0 50px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h3 {
  font-family: 'Alegreya', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.section-heading p {
  color: #666666;
  font-size: 16px;
}

.three-col {
  display: flex;
  flex-wrap: wrap;
}

.baking-item {
  width: 33.333%;
  padding: 0 20px;
  text-align: center;
}

.baking-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
}

.baking-item h4 {
  font-family: 'Alegreya', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.baking-item p {
  font-size: 15px;
  color: #666666;
}

/* ============================================================
   SECTION: CONTACT
============================================================ */
.section-contact {
  padding: 85px 0;
}

.section-contact .two-col {
  align-items: flex-start;
}

.contact-sub {
  font-weight: 600;
  color: #444444;
  margin-bottom: 14px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #555555;
}

.contact-icon {
  color: #ae9768;
  font-size: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}

.map-placeholder {
  width: 100%;
  height: 600px;
  background: #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}
.section-contact .two-col {
  align-items: stretch;
}

.map-placeholder {
  height: 100%; /* هتاخد ارتفاع الكولم كامل */
  min-height: 400px;
}

/* ============================================================
   FOOTER
============================================================ */
#footer-main {
  background: #403d38;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-widget h4 {
  font-family: 'Alegreya', serif;
  font-size: 18px;
  font-weight: 400;
  color: #d5cfc5;
  margin-bottom: 18px;
}

.footer-widget p {
  font-size: 15px;
  color: #969696;
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-widget a {
  color: #969696;
  transition: color 0.2s;
}

.footer-widget a:hover {
  color: #ae9768;
}

.footer-widget ul li {
  font-size: 15px;
  color: #969696;
  line-height: 1.8;
  padding-left: 14px;
  position: relative;
}

.footer-widget ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #ae9768;
}

#footer-bottom {
  background: #353330;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 16px;
  width: fit-content;
}

.footer-logo img {
  height: 40px;
}

.copyright {
  font-size: 15px;
  color: #777777;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-heading {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .col-half {
    width: 100%;
  }

  .col-text {
    padding: 36px 24px;
  }

  .baking-item {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  #main-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 400px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}