/* ============================
   ALJADAR ALADHEAM - Main Stylesheet
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
  --black: #000000;
  --white: #ffffff;
  --brown: #6B4226;
  --light-brown: #8B5E3C;
  --gray-bg: #f5f5f5;
  --gray-text: #555555;
  --dark-gray: #222222;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: var(--white);
}

/* ============================
   NAVIGATION
   ============================ */

nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-center {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1.6;
  color: var(--black);
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--brown);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--brown);
}

.mobile-menu .mobile-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 10px;
}

/* ============================
   HERO SECTION
   ============================ */

.hero {
  background: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 80px 60px;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-text p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-btn:hover {
  background: var(--brown);
}

.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo svg {
  width: 320px;
  height: 320px;
  max-width: 100%;
}

/* ============================
   SECTION TITLES
   ============================ */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title .divider {
  width: 60px;
  height: 1px;
  background: #888;
  margin: 0 auto;
}

/* ============================
   PRODUCTS SECTION (dark)
   ============================ */

.products-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px;
}

.products-section .section-title h2 {
  color: var(--white);
  font-size: 46px;
}

.products-section .section-title .divider {
  background: #555;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.product-card {
  text-align: center;
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--white);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  max-width: 340px;
  margin: 0 auto;
}

/* ============================
   WELCOME / ABOUT SECTION (dark)
   ============================ */

.welcome-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 80px;
  border-top: 1px solid #222;
}

.welcome-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-inner .section-title {
  margin-bottom: 0;
  text-align: center;
}

.welcome-section .section-title h2 {
  color: var(--white);
}

.welcome-image {
  flex: 1;
  min-width: 0;
}

.welcome-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.welcome-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.welcome-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--white);
}

.welcome-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: center;
}

.welcome-content p strong {
  color: var(--white);
}

/* ============================
   CONTACT SECTION
   ============================ */

.contact-section {
  display: flex;
  min-height: 500px;
}

.contact-info {
  flex: 1;
  background: var(--gray-bg);
  padding: 70px 60px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--black);
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--black);
}

.contact-info p,
.contact-info a {
  font-size: 14px;
  line-height: 2;
  color: var(--gray-text);
  text-decoration: none;
  display: block;
}

.contact-info a:hover {
  color: var(--brown);
}

.contact-map {
  flex: 1;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================
   PAGE HEADER (inner pages)
   ============================ */

.page-header {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 16px;
  color: #aaaaaa;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================
   CATALOGUE PAGE
   ============================ */

.catalogue-section {
  background: var(--black);
  padding: 80px 60px;
}

/* ============================
   SERVICES PAGE
   ============================ */

.services-section {
  background: var(--white);
  padding: 80px 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid #e0e0e0;
  padding: 40px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ============================
   ABOUT PAGE
   ============================ */

.about-section {
  background: var(--white);
  padding: 80px 80px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.about-inner.reverse {
  flex-direction: row-reverse;
}

.about-inner img {
  flex: 1;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
}

.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================
   CONTACT PAGE
   ============================ */

.contact-page-section {
  display: flex;
  min-height: 600px;
}

.contact-form-area {
  flex: 1;
  padding: 70px 60px;
  background: var(--white);
}

.contact-form-area h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
}

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

.contact-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: var(--brown);
}

.contact-details-area {
  flex: 1;
  background: var(--gray-bg);
  padding: 70px 60px;
}

.contact-details-area h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 36px;
}

.contact-details-area h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 28px;
  color: var(--black);
}

.contact-details-area p,
.contact-details-area a {
  font-size: 14px;
  line-height: 2;
  color: var(--gray-text);
  text-decoration: none;
  display: block;
}

.contact-details-area a:hover {
  color: var(--brown);
}

.map-section {
  height: 420px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================
   FOOTER
   ============================ */

footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 40px 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: left;
}

.footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: #aaa;
  max-width: 240px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #aaa;
}

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  /* Hide desktop nav links, show hamburger */
  .nav-left, .nav-right, .nav-center {
    display: none;
  }

  nav {
    justify-content: space-between;
    padding: 16px 20px;
  }

  .nav-mobile-brand {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--black);
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 50px 24px 40px;
    min-height: auto;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-logo svg {
    width: 180px;
    height: 180px;
  }

  /* Products */
  .products-section {
    padding: 50px 20px;
  }

  .products-section .section-title h2 {
    font-size: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-card img {
    height: 220px;
  }

  /* Welcome */
  .welcome-section {
    padding: 50px 20px;
  }

  .welcome-inner {
    flex-direction: column;
    gap: 32px;
  }

  .welcome-image img {
    height: 240px;
  }

  /* Contact section on home */
  .contact-section {
    flex-direction: column;
  }

  .contact-info {
    padding: 50px 24px;
  }

  .contact-map {
    min-height: 300px;
  }

  /* Services */
  .services-section {
    padding: 50px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

  /* About */
  .about-section {
    padding: 50px 20px;
  }

  .about-inner, .about-inner.reverse {
    flex-direction: column;
    gap: 28px;
  }

  .about-inner img {
    height: 240px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Contact page */
  .contact-page-section {
    flex-direction: column;
  }

  .contact-form-area {
    padding: 50px 24px;
  }

  .contact-details-area {
    padding: 50px 24px;
  }

  .contact-form button {
    align-self: stretch;
    text-align: center;
  }

  .map-section {
    height: 300px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  footer {
    padding: 40px 24px;
  }

  /* Catalogue */
  .catalogue-section {
    padding: 50px 20px;
  }

  /* Page header */
  .page-header {
    padding: 50px 24px;
  }

  .page-header h1 {
    font-size: 34px;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .hero-btn {
    display: block;
    text-align: center;
  }
}

/* Hide mobile brand on desktop */
.nav-mobile-brand {
  display: none;
}
