/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: url('images/bg.jpg') no-repeat center center/cover;
  color: #fff;
  scroll-behavior: smooth;
}

.header {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f5a623;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

.hero {
  text-align: center;
  margin-top: auto;
  margin-bottom: 5rem;
}

.hero .tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ccc;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background-color: #f5a623;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #d98d1e;
}

.hero-btn.outline {
  background: transparent;
  border: 2px solid #f5a623;
  color: #f5a623;
}

.hero-btn.outline:hover {
  background-color: #f5a623;
  color: #000;
}

.hero-socials {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-socials a {
  color: #f5a623;
  font-size: 1.5rem;
  transition: opacity 0.3s;
}

.hero-socials a:hover {
  opacity: 0.7;
}

.scroll-down {
  margin-top: 2rem;
  text-align: center;
  color: #f5a623;
  font-size: 1rem;
}

.scroll-down i {
  font-size: 1.8rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


.section {
  padding: 4rem 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.owner-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.owner-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #f5a623;
}

.owner-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #f5a623;
}

.owner-info p {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #ccc;
}

.about .content {
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5a623;
}
.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* Internet Explorer 10+ */
}

.gallery-scroll::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Opera */
}


.gallery-scroll img {
  height: 200px;
  border-radius: 10px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
}

.reviews-container {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  object-fit: cover;
}

.review-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #f5a623;
}

.review-card p {
  font-size: 0.95rem;
  color: #ddd;
}

.footer {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.footer-content {
  margin-bottom: 1rem;
}

.socials a {
  color: #f5a623;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: opacity 0.3s;
}

.socials a:hover {
  opacity: 0.7;
}

.footer-note {
  font-size: 0.875rem;
  color: #ccc;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  resize: none;
  background-color: #fff;
  color: #000;
}

.contact-form textarea {
  height: 100px;
}

.contact-form button {
  padding: 0.75rem;
  background-color: #f5a623;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d98d1e;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 200px;
    padding: 1rem;
    border-radius: 8px 0 0 8px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 90%;
    max-width: 350px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .gallery-scroll img {
    height: 150px;
  }
}


@media (max-width: 768px) {
  .team-title {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
    gap: 1.5rem;
  }

  .team-card {
    padding: 1rem;
  }

  .team-card img {
    width: 80px;
    height: 80px;
  }

  .team-card h4 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: 0.9rem;
  }
}



/* Team Section */
.team {
  background-color: transparent;
  padding: 4rem 2rem;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #d98d1e;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
}

.team-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fbf8f8;
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 1rem;
  color: #f2ecec;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-title {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
    gap: 1.2rem;
  }

  .team-card {
    padding: 1rem;
  }

  .team-card img {
    width: 80px;
    height: 80px;
  }

  .team-card h4 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr; /* Single column for very small screens */
  }
}