/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  padding-top: 80px;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border-radius: 4px;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #2b5876, #4e4376);
  color: #fff;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff9900;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  background: url('../assets/logos/logo4.jpg') no-repeat center center / cover; /* Ensures image covers the area */
  min-height: 92vh;
  height: 92vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px; /* Adjusted padding for better spacing */
  text-align: center;
}

.hero-heading {
  font-size: 2.5rem; /* Adjusted font size for better readability on mobile */
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-btn {
  background-color: #2b5876;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  margin-top: 20px; /* Adjusted margin for better spacing */
}

.hero-btn:hover {
  background-color: #1d3c54;
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem; /* Smaller font size for mobile */
  }

  .hero-btn {
    padding: 12px 24px; /* Smaller padding for mobile */
    font-size: 1rem; /* Smaller font size for mobile */
  }
}

/* Portfolio Section */
.portfolio-section,
.gallery-section {
  background-color: #e4edf3;
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
}

.gallery-section h2,
.gallery h2 {
  margin-top: 40px;
  font-size: 1.8rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-item {
  text-align: center;
  width: 280px;
  margin: auto;
}

.portfolio-item img,
.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.portfolio-item img {
  transition: opacity 1s ease-in-out, transform 0.2s ease;
  opacity: 1;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* About Section */
.about-section {
  background-image: url('../assets/images/image-b34.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

.about-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.about-section .about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.about-content img {
  width: 200px;
  border-radius: 100px;
}

.about-text {
  max-width: 500px;
}

/* Services Section */
.services-section {
  background-color: #fff5e6;
  padding: 60px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}

.book-btn {
  margin-top: auto;
  padding: 12px 0;
  font-weight: bold;
  font-size: 16px;
  background-color: #2b5876;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: darkgoldenrod;
  color: #fff;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #2b5876, #4e4376);
  color: white;
  padding: 60px 20px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Social Contact Section */
.social-icons {
  text-align: center;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 50px;
  margin: 0 15px;
  color: white;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a.whatsapp:hover {
  color: #25D366;
}

.social-icons a.instagram:hover {
  color: #E1306C;
}

.social-icons a.facebook:hover {
  color: #3b5998;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

/* Price Styling */
.price {
  color: #e91e63;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
}

p {
  text-align: left;
  padding-left: 1rem;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
  }

  .hero-heading {
    font-size: 2rem;
    padding: 0 10px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 20px;
    margin-top: 50px;
  }

  .portfolio-grid,
  .services-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1rem;
  }

  .portfolio-item,
  .service-card {
    width: 100%; /* Full width on small screens */
  }

  .about-section .about-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .about-content img {
    width: 150px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 0 10px;
  }

  .social-icons a {
    font-size: 40px;
  }

  footer {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
}

/* Hamburger Styles */
.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Show hamburger and hide nav links on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to right, #2b5876, #4e4376);
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 10px 20px;
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background-position: center top;
    background-size: cover;
  }

  .hero .overlay {
    padding: 20px;
  }
}