/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #FAF4EF;
  color: #2B2B2B;
}
#message {
  display: none;
  color: green;
  font-weight: bold;
  margin-top: 10px;
}

html {
  scroll-behavior: smooth;
}

/* Header / Navbar */
header {
  position: fixed;
  top:0 ;
  left: 0;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  height: 80px;
  margin-top: 0px;
  background-color: #fff0ee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header {
  padding: 15px 5%;  /* ↓ reduce percentage to allow more space */
  flex-wrap: wrap;   /* ← add this so content wraps instead of overflowing */
}
.logo {
  max-width: 140px;
  white-space: nowrap;

  text-overflow: ellipsis;
}

/* .logo img {
  height: 100px;
} */
.logo {
  font-weight: bold;
  line-height: 1.2;
  color: #b30059;
}

.logo-main {
  font-family: 'Brush Script MT', cursive;
  font-size: 40px;
  color: #b30059;
}

.logo-sub {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #000;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #4b2c20;
  font-weight: 500;
}

.navbar {
  background-color: #8B1E2B;
}
.navbar-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 558px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    background-color: #fff0ee;
    position: absolute;
    top: 80px;
    right: 10%;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    /* background-color: #fff; */
  }
  
  .navbar-links.show {
    display: flex;
    
  }
  
  /* Optional mobile responsiveness */
  @media (min-width: 768px) {
    .menu-toggle {
      display: none;
    }
  
    .navbar-links {
      display: flex !important;
      flex-direction: row ;
      
    }
  }
  .navbar-links a {
    margin: 1px 0;         /* previously margin: 10px 0; */
    padding: 1px 50px;     /* reduce padding for tighter spacing */
    font-size: 16px;
  }
  

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    margin-left: 250px;
  }
} 
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: #a03c3c;
    margin-left: auto;
  }
}


.menu-toggle {
  display: none;
}


/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #fdf3f2;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #fdf3f2;
}

.hero-img {
  flex: 1;
  text-align: left;
}

.hero-img img {
  margin-top: 70px;
  max-width: 400px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    margin-top: 50px;
    width: 90%;
    max-width: 250px; /* limit max width on small screens */
  }}

.hero-text {
  flex: 1;
  padding-left: 50px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #a03c3c;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #5c3c34;
}


.cta-btn {
  padding: 12px 25px;
  background-color: #a03c3c;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #8b1e2b;
}

/* About Section */
.about {
  padding: 80px 10%;
  background-color: #fdf3f2;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff3f0;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  padding: 30px;
}

.about-img img {
  max-width: 300px;
  border-radius: 15px;
}

.about-text {
  flex: 1;
  margin-left: 40px;
}

.about-text h2 {
  font-size: 28px;
  color: #a03c3c;
  font-family: 'Brush Script MT', cursive;
}

.about-text h3 {
  font-size: 22px;
  color: #000;
  margin-top: 10px;
}

.about-text p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #5c3c34;
}

/* Services Section */
.services {
  padding: 80px 10%;
  text-align: center;
  background-color: #fff0ee;
}

.section-title {
  font-size: 36px;
  font-family: 'Brush Script MT', cursive;
  color: #a03c3c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #5c3c34;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 40px;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }
}


.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box img {
  width: 60px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 16px;
  color: #4b2c20;
}

/* Gallery Section */
.gallery {
  background-color: #fdf3f2;
  padding: 80px 10%;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


/* Contact Section */
.contact {
  background-color: #fff0ee;
  padding: 80px 10%;
  text-align: center;
}

.contact-subtitle {
  font-size: 18px;
  color: #5c3c34;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form button {
  padding: 12px;
  background-color: #a03c3c;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #8c3232;
}

/* Footer */
.footer {
  background-color: #4b2c20;
  color: #fff0ee;
  padding: 30px 10%;
  text-align: center;
}

.footer-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  margin: 0 10px;
  color: #fff0ee;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd2cb;
}

/* Responsive */
@media (max-width: 768px) {
  .hero,
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .about-text {
    padding-left: 0;
    margin-left: 0;
    margin-top: 20px;
  }

  .hero-img,
  .about-img img {
    text-align: center;
    max-width: 90%;
  }
  #message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
    transition: opacity 0.5s ease;
  }
  
}
/* Responsive Navbar */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #8B1E2B;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff0ee;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}
.footer {
  background-color: #8B1E2B;
  color:black;
  text-align: center;
  padding: 2px 2px;
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: white;
  margin: 0 5px;
  font-size: 29px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd1dc;
}

#us {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

#copy{
  height: 30px;
  width: 100%;
  margin-top: 50px;
  background-color:  #FAF4EF;
  color: black;
}

.footer p{
  margin-top: 20px;
}
