/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #d81b60;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 1000;
}

.nav-left {
  font-size: 22px;
  font-weight: bold;
}

.nav-center a {
  margin: 0 15px;
  font-size: 15px;
}

.nav-right select,
.nav-right button {
  margin-left: 10px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #d81b60;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  height: 60vh;
  background: url("https://i.pinimg.com/1200x/14/89/99/148999948630a6b3602ee294cc6ae341.jpg")
    center/cover no-repeat;
}

.hero-overlay {
  background: rgb(0 0 0 / 22%);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  margin: 10px 0 25px;
}

.search-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-box select,
.search-box button {
      padding: 18px;
    min-width: 299px;
}

/* ===== FILTER SECTION ===== */
.filter-section {
  padding: 60px 40px;
  text-align: center;
}

.filters {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== IMAGE CARDS ===== */
.image-section {
  padding: 60px 350px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.image-card {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-card:hover {
  transform: scale(1.03);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .image-section {
  padding: 60px 60px;
}
.hero {
  height: 80vh;
}
}
/* ===== WEDDING CATEGORIES ===== */
.wedding-categories {
  padding: 60px 350px;
  background: #fff;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.category-header h2 {
  font-size: 26px;
}

.view-all {
  color: #e91e63;
  font-weight: 500;
}

/* ===== GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===== CARD ===== */
.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  overflow: hidden;
  min-height: 140px;
  transition: 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-content {
  padding: 25px;
  width: 60%;
}

.category-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-content span {
  font-size: 14px;
}

.category-content p {
  font-size: 14px;
  color: #555;
}

/* ===== IMAGE ===== */
.category-image {
  width: 40%;
  height: 100%;
  clip-path: circle(80% at 100% 50%);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BACKGROUNDS ===== */
.bg-blue { background: #e3ebff; }
.bg-peach { background: #f7dcc7; }
.bg-pink { background: #e7c1bb; }
.bg-orange { background: #f8c6a1; }
.bg-cream { background: #f9dfc9; }
.bg-beige { background: #e8d9c5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-image {
    clip-path: circle(90% at 100% 50%);
  }
  .wedding-categories {
  padding: 60px 60px;
}
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: url("https://image.wedmegood.com/resized/720X/uploads/project/292582/1718949939_image3732.jpg?crop=194,106,1620,911")
    center/cover no-repeat;
  padding: 80px 20px;
  position: relative;
}

.stats-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px 0;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== STAT CARD ===== */
.stat-card {
  background: #e91e63;
  color: #fff;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  text-align: center;
  padding: 35px 20px;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stat-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.stat-card h2 {
  font-size: 38px;
  margin: 5px 0;
}

.stat-card p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-container {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stat-card {
    width: 180px;
    height: 180px;
    padding: 30px 15px;
  }

  .stat-card h2 {
    font-size: 30px;
  }
}


/* ===== FEATURED WORKS ===== */
.featured-works {
  padding: 70px 40px;
  background: #fffaf8;
  text-align: center;
}

.section-title {
  color: #e91e63;
  font-size: 32px;
  font-weight: 700;
}

.heart-divider {
  margin: 10px 0 30px;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 22px;
  border: 2px solid #e91e63;
  background: transparent;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background: #e91e63;
  color: #fff;
}

/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   padding: 30px 350px;
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  transition: 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
  display: grid;
   padding: 30px 60px;

}
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 2fr;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: #0f0f0f;
  color: #ddd;
  padding: 60px 30px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  color: #fff;
  margin: 15px 0;
  font-size: 15px;
}

.footer-col p {
  line-height: 1.7;
}

.footer-col a {
  color: #cfa45a;
  text-decoration: none;
}

.read-more {
  color: #4caf50;
  display: inline-block;
  margin-top: 8px;
}

/* Icons */
.footer-icon {
  font-size: 28px;
  color: #fff;
}

/* Center column */
.footer-center {
  text-align: center;
}

.footer-center img {
  max-width: 120px;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 6px;
  color: #fff;
  font-size: 13px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-icon {
    margin-bottom: 10px;
  }
}


/* Header */

.venue-page{

  padding: 60px 310px;
}
.venue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.venue-header h2 {
  margin: 0;
}

.venue-header p {
  font-size: 14px;
  color: #777;
}

.venue-actions {
  display: flex;
  gap: 10px;
}

.venue-actions input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.venue-actions button {
  padding: 8px 14px;
  border: 1px solid #e91e63;
  background: #fff;
  cursor: pointer;
}

.venue-actions .active {
  background: #e91e63;
  color: #fff;
}

/* Grid */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.venue-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.venue-card:hover {
  transform: translateY(-6px);
}

/* Image */
.venue-img {
  position: relative;
}

.venue-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff9800;
  color: #fff;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 4px;
}
@media (max-width: 568px) {
  .venue-page{
   padding: 60px 10px;
}
.venue-actions {
    display: grid;
    gap: 10px;
}
.venue-actions {
    display: grid;
    gap: 10px;
    padding-bottom: 20px;
}
}
/* Info */
.venue-info {
  padding: 15px;
}

.venue-info h3 {
  margin: 0 0 5px;
}

.rating {
  font-size: 14px;
  color: #e91e63;
}

.rating span {
  color: #777;
}

.location {
  font-size: 13px;
  color: #555;
  margin: 8px 0;
}

.price span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .venue-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PRICE ROW ===== */
.price-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.price-item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.price-item .label {
  font-size: 12px;
  color: #777;
}

.price-item .amount {
  font-weight: 600;
  color: #333;
}




.venue-detail {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.venue-left {
  width: 65%;
}

.venue-img {
  width: 100%;
  border-radius: 10px;
}

.venue-info-box {
  background: #fff;
  padding: 20px;
  margin-top: -60px;
  position: relative;
  border-radius: 10px;
}

.price-row {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

/* RIGHT FORM */
.venue-right {
  width: 35%;
}

.enquiry-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.enquiry-form h3 {
  color: #e91e63;
  margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-row span {
  padding: 10px;
  background: #eee;
  border-radius: 6px;
}

.enquiry-form button {
  width: 100%;
  padding: 14px;
  background: #e91e63;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.note {
  font-size: 12px;
  margin-top: 10px;
  color: #777;
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}



.container {
  max-width: 1200px;
  margin: auto;
  padding: 25px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header h1 {
  margin: 0;
  font-size: 26px;
}

.page-header p {
  font-size: 14px;
  color: #777;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-actions input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.view-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
}

.view-btn.active {
  color: #e91e63;
  font-weight: bold;
}

/* City filters */
.city-filters {
  display: flex;
  gap: 18px;
  margin: 25px 0;
}

.city-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.yellow { background: #ffd77a; }
.peach { background: #ffc9a5; }
.blue { background: #d9e7f0; }
.brown { background: #d1b29c; }
.dark { background: #333; color: #fff; }

/* Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.rating {
  font-size: 14px;
  color: #e91e63;
}

.rating span {
  color: #777;
}

.location,
.type {
  font-size: 13px;
  color: #666;
}

.price {
  margin: 8px 0;
  font-size: 16px;
  font-weight: bold;
}

.price span {
  font-size: 13px;
  color: #777;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  font-size: 12px;
  background: #f2f2f2;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .city-filters {
    overflow-x: auto;
  }
}
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}




/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.page-header h1 {
  margin: 0;
  font-size: 26px;
}

.page-header p {
  font-size: 14px;
  color: #777;
}

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.genie {
  background: #fff3f6;
  border: 1px solid #ffd1dc;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.genie span {
  color: #e91e63;
  font-weight: bold;
}

.header-right input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* View toggle */
.view-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 8px;
}

.view-toggle .active {
  color: #e91e63;
  font-weight: bold;
}

/* Grid */
.catering-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.catering-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.catering-card:hover {
  transform: translateY(-6px);
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.rating {
  font-size: 14px;
  color: #e91e63;
}

.rating span {
  color: #777;
}

.location {
  font-size: 13px;
  color: #666;
  margin: 6px 0;
}

.price-label {
  font-size: 13px;
  color: #777;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin: 4px 0 10px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  font-size: 12px;
  background: #f2f2f2;
  padding: 4px 8px;
  border-radius: 4px;
}

.tags .more {
  color: #e91e63;
}

/* Responsive */
@media (max-width: 992px) {
  .catering-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-header {
    flex-direction: column;
  }

  .catering-grid {
    grid-template-columns: 1fr;
  }
}





.venue-layout {
  display: flex;
  gap: 30px;
}

.venue-left {
  width: 65%;
}

.venue-main-img {
  width: 100%;
  border-radius: 10px;
}

.venue-card {
  background: #fff;
  padding: 20px;
  margin-top: -50px;
  position: relative;
  border-radius: 10px;
}

.rating-badge {
  background: #4caf50;
  color: #fff;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
  float: right;
}

.venue-meta span {
  margin-right: 15px;
  font-size: 14px;
  color: #555;
}

.tabs {
  margin-top: 20px;
}

.tabs button {
  background: none;
  border: none;
  margin-right: 15px;
  font-size: 15px;
  cursor: pointer;
}

.tabs .active {
  border-bottom: 2px solid #e91e63;
}

.areas {
  background: #fff;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* RIGHT SIDE */
.venue-right {
  width: 35%;
}

.price-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.price-box h4 {
  margin-top: 0;
}

.price-box span {
  color: #777;
  font-size: 13px;
}

.enquiry-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.enquiry-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row span {
  padding: 10px;
  background: #eee;
  border-radius: 6px;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.enquiry-form button {
  width: 100%;
  background: #e91e63;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
