/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: url('');
  color: #333;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #ff914d, #f57c00);
  padding: 1rem 2rem;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

header .logo-image {
  width: 60px;
  height: auto;
}

header .logo-title {
  font-size: 1.8rem;
  font-family: 'Great Vibes', cursive;
}

header nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

header nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffe0b2;
}

/* Search Bar */
header .search-bar {
  flex-grow: 1;
  margin: 1rem 2rem;
  display: flex;
  justify-content: center;
}

header .search-bar input {
  width: 100%;
  max-width: 500px;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

header .search-bar input::placeholder {
  color: #ccc;
}

/* Login Dropdown */
.login-dropdown {
  position: relative;
}

.login-dropdown button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.3s;
}

.login-dropdown button:hover {
  color: #ffe0b2;
}

.login-dropdown-content {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: 0;
  background: #fff;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.login-dropdown-content a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.login-dropdown-content a:hover {
  color: #f57c00;
}

.login-dropdown:hover .login-dropdown-content {
  display: block;
}

/* Hero Section */
#hero {
  text-align: center;
  padding: 3rem 1rem;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  background-attachment: fixed;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
}

/* Services */
#services {
  padding: 2rem;
  text-align: center;
  background:transparent;
}

#services h2 {
  font-size: 2rem;
  color: #f57c00;
  margin-bottom: 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-title {
  font-size: 1.8rem;
  font-family: 'Tangerine', cursive;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  position: absolute;
  z-index: 1;
}

.service-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.3s, opacity 0.3s;
}

.service-card:hover .service-hover-content {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Us Section */
#contact-us {
  padding: 2rem;
  background:transparent;
  text-align: center;
}

#contact-us h2 {
  font-size: 2rem;
  color: #f57c00;
  margin-bottom: 1em;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffe0b2;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f57c00;
  box-shadow: 0 0 5px rgba(245, 124, 0, 0.5);
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  background: #f57c00;
  color: white;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ff914d;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  header .search-bar {
    margin: 1rem 0;
    width: 100%;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header .logo-image {
    width: 50px;
  }

  header .logo-title {
    font-size: 1.5rem;
  }

  #hero {
    padding: 2rem 1rem;
  }

  #services h2 {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }
}
