* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #333;
  color: white;
  height: 70px;
  flex-wrap: wrap;
}

.nav-brand a {
  font-size: 2em;
  text-decoration: none;
  color: #ffffff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  margin-left: 10px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #f0a500;
}

.nav-menu .dropdown {
  cursor: pointer;
}

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  padding: 10px 0;
  margin: 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* For mobile and smaller screens */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .navbar .nav-menu {
    flex-direction: column;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }
}


/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #000;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #ff6b00;
}


/* General styling for the categories section */
.categories {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.categories h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

/* Grid layout for the category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Auto-responsive grid */
  gap: 20px;
  justify-items: center;
}

/* Individual category card styling */
.category-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05); /* Hover effect */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Images inside the category card */
.category-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Overlay for text */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Smaller columns */
  }

  .category-card {
    max-width: 250px; /* Adjust card size */
  }

  .category-overlay {
    font-size: 1rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .categories h2 {
    font-size: 1.8rem; /* Smaller title */
  }

  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Adjust grid for small screens */
  }

  .category-card {
    max-width: 200px;
  }

  .category-overlay {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}



/* Hero section */
/* Default styles */
.hero {
  padding: 100px 20px; /* Padding for larger screens */
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3em;
}

.hero-content p {
  font-size: 1.5em;
  margin: 20px 0;
}

.cta-button {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e68900;
}

/* Mobile screens */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px; /* Reduced padding */
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1.2em;
  }

  .cta-button {
    font-size: 1em;
    padding: 8px 16px;
  }
}

/* Smaller devices (e.g., mobile phones) */
@media (max-width: 480px) {
  .hero {
    padding: 40px 10px; /* Further reduced padding */
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 6px 12px;
  }
}

/* General styling for the photo section */
.photo-section {
  padding: 40px 20px;
  background-color: #f0f0f0;;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid layout */
  justify-items: center;
  align-items: center;
}

/* Individual photo items */
.photo-item {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.05); /* Hover effect */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Images inside photo items */
.photo-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  .photo-section {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust column size */
    gap: 15px;
  }

  .photo-item {
    max-width: 250px; /* Adjust card size */
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .photo-section {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Smaller columns for mobile */
    gap: 10px;
  }

  .photo-item {
    max-width: 200px; /* Reduce size for small screens */
  }
}


.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
  font-size: 32px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #ff6b00;
}


/* Footer */
.footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer h4 {
  margin-bottom: 15px;
  color: #ff6b00;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ffffff;
}

.footer ul li a:hover {
  text-decoration: underline;
  color: #f0a500;
}


