/* Reset + base styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}


/* NAV */
header {
  /* background-color: #111; */
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 120px;
  width: auto;
}

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

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

.nav-links li a:hover {
  color: #FFD700; /* Gold highlight */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .navbar.active .nav-links {
    display: flex;
  }
}

/* Hamburger default hidden */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
  }
}




/* HERO */
.hero {
    background-color: #111;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 900px;
    margin: auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ccc;
  }
  
  .hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }
  

/* About us */
.about-section {
    background-color: #111;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .about-heading {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about-text {
    max-width: 800px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
  }
  
  

  /* Services */
  .services-section {
    background-color: #f7f7f7;
    color: #111;
    padding: 80px 20px;
    text-align: center;
  }
  
  .services-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
  }
  
  .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .service-item {
    background-color: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
  }
  
  .service-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    margin-bottom: 10px;
    color: #FFD700;
    font-size: 1.3rem;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
  }

  
  

  /* Reviews */
  .reviews-section {
    background-color: #111;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .reviews-heading {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  .reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
  }
  
  .review {
    background-color: #1a1a1a;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    position: relative;
  }
  
  .review span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #FFD700;
    font-size: 0.95rem;
  }

  /* Gallery */
  .gallery-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
  }
  
  .gallery-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }
  
  

  /* Footer */
  .footer {
    background-color: #1c1c1c;
    color: #ccc;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
  }
  
  .footer h3, .footer h4 {
    color: #FFD700;
    margin-bottom: 15px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-center ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-center ul li {
    margin-bottom: 10px;
  }
  
  .footer-center ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-center ul li a:hover {
    color: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 0.85rem;
  }
  
  .footer a {
    color: #ccc; /* or #ccc if you want a subtle look */
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  