/* ========== style.css ========== */

/* ------------------------------
   1) Root Variables & Reset
--------------------------------*/
:root {
  --color-primary: #B76E79; /* Rose Gold accent */
  --color-beige: #F9EBEA;
  --color-off-white: #FAFAFA;
  --color-dark-gray: #4A4A4A;
  --color-black: #000000;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

/* ------------------------------
   2) Global Styles
--------------------------------*/
body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--color-off-white);
  color: var(--color-dark-gray);
  overflow-x: hidden;
}

/* ------------------------------
   3) Header / Navigation
--------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-name {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-right {
  justify-content: flex-end;
}

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

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links li a:hover {
  opacity: 0.7;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.3rem;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0,0,0,0.7);
    width: 200px;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(8px);
    padding: 1rem;
  }
  .nav-links.show {
    transform: translateX(0);
  }
}

/* ------------------------------
   4) Hero Section (Simpler, Brighter)
--------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('hero-bg.jpg') no-repeat center center/cover;
  filter: brightness(0.95) blur(4px);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: #fff;
  padding: 1rem;
  margin-top: 4rem; /* Offset so text isn’t hidden by the header */
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ------------------------------
   5) Buttons
--------------------------------*/
.btn-primary {
  background-color: #fff;
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  background-color: #fff;
  color: var(--color-primary);
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-social:hover {
  background-color: #9c5c66;
}

/* ------------------------------
   6) Why Choose Us
--------------------------------*/
.why-choose-us {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.why-choose-us h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-black);
}
.choose-icons-row {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.choose-icon-card {
  flex: 1 1 250px;
  background-color: #fdf9f7;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.choose-icon-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.choose-icon-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: #333;
}
.choose-icon-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}
.choose-ceo-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}
.choose-ceo-img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.choose-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.choose-stat-item {
  background-color: #fdf9f7;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  flex: 1 1 150px;
}
.choose-stat-number {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* ------------------------------
   7) Services Section (Cards)
--------------------------------*/
.services {
  background-color: var(--color-beige);
  padding: 4rem 2rem;
  text-align: center;
}
.services h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}
.services p {
  margin-bottom: 2rem;
  color: var(--color-dark-gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.service-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}
.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
hr {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 0.5rem 0 1rem;
}
.service-description {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 0.5rem;
}
.service-subitems p {
  font-size: 0.9rem;
  margin: 0.3rem 0;
  color: #555;
}
.service-subitems em {
  color: var(--color-primary);
  font-weight: 600;
}

/* ------------------------------
   8) Gallery Section (1 Video)
--------------------------------*/
.gallery {
  background-color: #222;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.gallery h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.gallery p {
  margin-bottom: 2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #000;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ------------------------------
   9) Contact Section
--------------------------------*/
.contact {
  background-color: #fff;
}
.section-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}
.contact h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}
.contact p {
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
}
.contact-info {
  margin-bottom: 2rem;
}
.contact-info p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--color-dark-gray);
}
.contact-info i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}
.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Contact Form Styles with Animation */
@keyframes formFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form {
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  animation: formFadeIn 1s ease-out forwards;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #9c5c66;
}

/* ------------------------------
   10) Footer
--------------------------------*/
.footer {
  text-align: center;
  padding: 2rem 0;
  background-color: var(--color-beige);
  color: var(--color-dark-gray);
  border-top: 1px solid rgba(0,0,0,0.1);
}
.footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ------------------------------
   11) Floating WhatsApp Button (Removed)
--------------------------------*/
/* (Floating WhatsApp button removed per new requirements) */

/* ------------------------------
   12) Responsive Adjustments
--------------------------------*/
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
}
