.hero-section {
  background-color: #1f517a; /* Blue background */
  min-height: 40vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 15px;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px; /* matches WhatFont */
  line-height: 60px; /* matches design */
  font-weight: 700; /* matches WhatFont */
  color: rgb(255, 255, 255); /* exact match */
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: Inter, sans-serif;
  font-size: 20px; /* matches WhatFont */
  line-height: 28px; /* matches design */
  font-weight: 400; /* matches WhatFont */
  color: rgba(255, 255, 255, 0.8); /* exact match */
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}
.gallery-section {
  background: #f7f6f3;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  text-align: center;
  font-size: 30px;
  color: #1c3d5a;
  margin-bottom: 25px;
}

/* Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: #ffffff;
  color: #1c3d5a;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background: #1c3d5a;
  color: #ffffff;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: none;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 60, 102, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

/* Tag */
.tag {
  background: #f5c16c;
  color: #1c3d5a;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Hover */
.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}
.gallery-cta-section {
  background-color: #1b4f7a;
  padding: 60px 30px;
  color: #fff;
}
.gallerybtn,
.btn-primary {
  background-color: #c4a14f;
  color: #fff;
}
.gallery-cta-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 30px;
}
.gallery-cta-buttons {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallerybtn {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.3s,
    color 0.3s;
  border: none;
}
.btn-primary {
  border: none;
}
.btn-primary:hover {
  background-color: #b29343;
}
.btn-outline {
  background: 0 0;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background-color: #fff;
  color: #1b4f7a;
}
