/* Global styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
  color: #333;
}

/* Colors */
:root {
  --main-bg-color: #4a4a4a;
  --accent-color: #6c757d;
  --text-color: #ffffff;
  --highlight-color: #ff9505;
}

/* Header */
header {
  background-color: var(--main-bg-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

h1.navbar-brand {
  font-size: 2.5rem;
  color: var(--highlight-color);
  margin: 0;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  color: var(--text-color) !important;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--highlight-color) !important;
}

/* Hero section */
.hero {
  height: 50vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(74, 74, 74, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.carousel-inner img {
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: var(--main-bg-color);
  padding: 20px 0;
  color: var(--text-color);
  text-align: center;
}


/* Hero section */
.hero {
  height: 50vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(74, 74, 74, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.carousel-inner img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Carousel navigation buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
