/* ---------- Base Theme: sarzu.com ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- BODY ---------- */
body {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  background-color: #fefefe;
  line-height: 1.8;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }

h1.luxury {
  font-family: 'Great Vibes', cursive;
  font-size: 3.2rem;
  color: #222;
  letter-spacing: 1.5px;
}

/* ---------- LINKS ---------- */
a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: #000; }

/* ---------- HEADER ---------- */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* ---------- NAVIGATION ---------- */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.menu-toggle {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
}
.bar {
  height: 3px;
  width: 25px;
  background: #1a1a1a;
  margin: 4px 0;
  border-radius: 2px;
}

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a1a1a;
  margin: 0 auto;
  font-weight: 700;
}
.logo img {
  height: 45px;
  width: auto;
}
.tagline {
  font-size: 0.85rem;
  color: #7a7a7a;
  margin-top: 4px;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ---------- CONTACT INFO ---------- */
.contact-info {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-info a {
  color: #000;
  text-decoration: none;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}
.contact-info a:hover { color: #333; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.phone-icon { font-size: 18px; }

/* ---------- MENU ---------- */
.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 12px;
  flex-wrap: wrap;
}
.menu li a {
  color: #1a1a1a;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  line-height: 1;
  padding: 5px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #b22222;
  transition: width 0.3s ease;
}
.menu li a:hover::after { width: 100%; }

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .contact-info { display: none; }
  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 0;
  }
  .menu.active { display: flex; }
  .menu li { padding: 10px 0; }
}

/* ---------- VIDEO ---------- */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  z-index: 1;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  cursor: default;
  z-index: 2;
}

/* ---------- INTRO SECTION ---------- */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: left;
}
.intro-image {
  width: 450px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.intro-text {
  flex: 1;
  min-width: 280px;
}
.intro-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.divider {
  width: 100px;
  height: 3px;
  background: #b22222;
  border: none;
  margin: 15px 0;
}
.intro-text p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #333;
}

/* ---------- INTRO (MOBILE) ---------- */
@media (max-width: 768px) {
  .intro { flex-direction: column; text-align: center; }
  .intro-image { width: 100%; max-width: 350px; }
  .intro-text { text-align: center; }
  .divider { margin: 15px auto; }
}

/* ---------- CARDS (Updated) ---------- */
.container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: nowrap;           /* ✅ keeps all cards in one line on desktop */
  max-width: 1100px;           /* ✅ fits 3 cards perfectly */
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  flex: 1;                     /* ✅ makes cards flexible instead of fixed width */
  min-width: 350px;            /* ✅ ensures cards don’t shrink too small */
  max-width: 350px;
  text-align: center;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.card p {
  color: #555;
  padding: 0 15px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Responsive (mobile/tablet) ---------- */
@media (max-width: 992px) {
  .container {
    flex-wrap: wrap;            /* ✅ allows wrapping on smaller screens */
  }
  .card {
    flex: 1 1 100%;
    max-width: 340px;
  }
}


/* ---------- FOOTER ---------- */
footer {
  background: #fdfdfd;
  margin-top: 60px;
  padding: 25px 20px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

/* ---------- BUTTON ---------- */
.simple-button {
  background: #fff;
  border: 1px solid #d3d3d3;
  color: #333;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.simple-button:hover { background: #f5f5f5; }

/* ---------- QUOTE ---------- */
.elegant-quote-dark {
  font-style: italic;
  font-size: 1.4rem;
  color: #f0f0f0;
  background: #000;
  border-left: 6px solid #b22222;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.elegant-quote-dark .quote-author {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  color: #ccc;
}

/* ---------- CONTENT SECTION ---------- */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.2;
}
.content-section p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* ---------- CONTENT (MOBILE) ---------- */
@media (max-width: 768px) {
  .content-section { padding: 30px 15px; }
  .content-section h2 { font-size: 1.6rem; }
  .content-section p { font-size: 1rem; }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 50px;
  max-width: 1000px;
  margin: auto;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.about-image { flex: 0 0 40%; }
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.about-text { flex: 1; }
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ---------- ABOUT (MOBILE) ---------- */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column !important;
  }
  .about-image,
  .about-text {
    flex: 1 1 100% !important;
  }
  .about-text {
    margin-top: 20px;
    text-align: center;
  }
}