/* ========================= */
/* Global Styles */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#F7F4EF;
  color:#111111;
  overflow-x:hidden;
  position:relative;
}

/* ========================= */
/* Background Blur Effects */
/* ========================= */

.bg-blur{
  position:fixed;
  width:350px;
  height:350px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur-1{
  background:#E7D8C9;
  top:40px;
  left:-80px;
}

.blur-2{
  background:#F3D9D9;
  bottom:-50px;
  right:-80px;
}

/* ========================= */
/* Navbar */
/* ========================= */

.navbar-wrapper{
  padding:20px;
  position:sticky;
  top:0;
  z-index:1000;
}

.navbar{
  max-width:1250px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 24px;

  border-radius:999px;

  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

/* Logo */

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-icon{
  width:42px;
  height:42px;

  border-radius:16px;

  background:#111111;
  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:700;
  font-size:18px;
}

.logo-area h2{
  font-family:'Poppins',sans-serif;
  font-size:24px;
  font-weight:700;
}

/* Nav Links */

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;

  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111111;

  font-size:15px;
  font-weight:500;

  transition:0.3s ease;
}

.nav-links a:hover{
  opacity:0.6;
}

/* Nav Buttons */

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.login-btn{
  border:none;
  background:transparent;

  font-size:15px;
  font-weight:600;

  cursor:pointer;
}

.primary-btn{
  border:none;
  background:#111111;
  color:white;

  padding:14px 24px;

  border-radius:999px;

  font-size:14px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s ease;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:
  0 15px 30px rgba(0,0,0,0.12);
}

/* ========================= */
/* Hero Section */
/* ========================= */

.hero-section{
  padding:
  70px 20px
  120px;
}

.hero-container{
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;

  align-items:center;
}

/* Left Content */

.eyebrow-text{
  text-transform:uppercase;
  letter-spacing:3px;

  color:#777777;

  font-size:13px;
  font-weight:600;

  margin-bottom:22px;
}

.hero-left h1{
  font-family:'Poppins',sans-serif;

  font-size:72px;
  line-height:1.08;

  font-weight:700;

  margin-bottom:26px;
}

.hero-description{
  font-size:18px;
  line-height:1.8;

  color:#555555;

  max-width:620px;

  margin-bottom:42px;
}

/* ========================= */
/* Search Box */
/* ========================= */
.search-box{

  background:white;

  padding:20px;

  border-radius:34px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);

  margin-bottom:32px;
}

/* Rows */

.search-top-row,
.search-bottom-row{

  display:grid;

  grid-template-columns:
  1fr 1fr 1fr;

  gap:14px;
}

.search-top-row{
  margin-bottom:14px;
}

/* Inputs */

.search-box input,
.search-box select{

  border:none;
  outline:none;

  background:#F7F4EF;

  padding:
  18px 20px;

  border-radius:22px;

  font-size:15px;
  font-weight:500;

  color:#111111;

  width:100%;

  appearance:none;

  font-family:'Inter',sans-serif;
}

/* Button */

.search-box button{

  border:none;

  background:#111111;
  color:white;

  padding:
  18px 28px;

  border-radius:22px;

  font-size:15px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s ease;
}

.search-box button:hover{
  transform:translateY(-2px);
}
@media(max-width:768px){

  .search-top-row,
  .search-bottom-row{

    grid-template-columns:1fr;

  }

}
/* ========================= */
/* Quick Tags */
/* ========================= */

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-bottom:32px;
}

.tags span{
  background:white;

  padding:
  10px 18px;

  border-radius:999px;

  border:
  1px solid #ECECEC;

  font-size:14px;
  font-weight:500;

  cursor:pointer;

  transition:0.3s ease;
}

.tags span:hover{
  transform:translateY(-2px);
  background:#111111;
  color:white;
}

/* ========================= */
/* Stats */
/* ========================= */

.stats-row{
  display:flex;
  gap:28px;

  color:#666666;

  font-size:14px;
  font-weight:500;
}

/* ========================= */
/* Hero Right */
/* ========================= */

.hero-right{
  position:relative;
}

/* Main Venue Card */
.venue-card {

    background: white;

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
    0 20px 40px rgba(
      0,
      0,
      0,
      0.08
    );

}

.venue-card img{
  width:100%;
  height:500px;

  object-fit:cover;
}

.venue-content{
  padding:28px;
}

.venue-top{
  display:flex;
  justify-content:space-between;

  margin-bottom:20px;
}

.venue-top h3{
  font-size:28px;
  font-weight:700;

  margin-bottom:6px;
}

.venue-top p{
  color:#777777;
}

.rating-box{
  background:#F7F4EF;

  padding:
  10px 14px;

  border-radius:18px;

  font-size:14px;
  font-weight:600;
}

.venue-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 20px;

    flex-wrap: wrap;

    gap: 10px;

}

.venue-bottom span {

    font-size: 16px;

    color: #666;

}

/* Floating Cards */

.floating-card{
  position:absolute;

  background:white;

  padding:18px 24px;

  border-radius:28px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);
}

.floating-card p{
  font-size:13px;
  color:#777777;

  margin-bottom:6px;
}

.floating-card h4{
  font-size:20px;
  font-weight:700;
}
.floating-card{

    display:none;

}
.booking-card{
  top:-20px;
  left:-20px;
}

.tour-card{
  bottom:-20px;
  right:-20px;

  background:#111111;
  color:white;
}

.tour-card p{
  color:rgba(255,255,255,0.7);
}

/* ========================= */
/* Categories Section */
/* ========================= */

.categories-section{
  max-width:1250px;

  margin:auto;

  padding:
  0 20px
  120px;
}

.section-header p{
  text-transform:uppercase;

  letter-spacing:3px;

  color:#777777;

  font-size:13px;
  font-weight:600;

  margin-bottom:14px;
}

.section-header h2{
  font-family:'Poppins',sans-serif;

  font-size:46px;
  line-height:1.2;

  margin-bottom:52px;
}

/* Categories Grid */

.categories-grid{
  display:grid;
  grid-template-columns:
  repeat(6,1fr);

  gap:20px;
}

.category-card{
  background:white;

  padding:28px;

  border-radius:30px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  transition:0.3s ease;

  cursor:pointer;
}

.category-card:hover{
  transform:translateY(-6px);
}

.category-icon{
  width:60px;
  height:60px;

  border-radius:20px;

  background:#F7F4EF;

  margin-bottom:22px;
}

.category-card h3{
  font-size:18px;
  font-weight:600;

  line-height:1.5;
}

/* ========================= */
/* Responsive Design */
/* ========================= */

@media(max-width:1400px){
  .hero-left h1{
    font-size:64px;
  }

  .navbar,
  .hero-container,
  .categories-section{
    max-width:1200px;
  }
}

@media(max-width:1200px){
  .hero-left h1{
    font-size:56px;
  }

  .navbar,
  .hero-container,
  .categories-section{
    max-width:100%;
    padding-left:20px;
    padding-right:20px;
  }
}

@media(max-width:1100px){

  .hero-container{
    grid-template-columns:1fr;
  }

  .search-box{
    grid-template-columns:1fr 1fr;
  }

  .categories-grid{
    grid-template-columns:
    repeat(2,1fr);
  }

}

@media(max-width:992px){

  .hero-left h1{
    font-size:56px;
  }

  .hero-section{
    padding:50px 20px 90px;
  }
}

@media(max-width:768px){

  .navbar{
    padding:16px 18px;
  }

  .nav-links{
    display:none;
  }

  .login-btn{
    display:none;
  }

  .hero-left h1{
    font-size:48px;
  }

  .hero-description{
    font-size:16px;
  }

  .search-box{
    grid-template-columns:1fr;
  }

  .stats-row{
    flex-direction:column;
    gap:12px;
  }

  .venue-card img{
    height:360px;
  }

  .categories-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-header h2{
    font-size:36px;
  }

  .hero-section{
    padding:40px 16px 80px;
  }

  .hero-container{
    gap:50px;
  }

  .venue-content{
    padding:22px;
  }

  .venue-top h3{
    font-size:24px;
  }
}

@media(max-width:576px){
  .navbar-wrapper{
    padding:14px;
  }

  .navbar{
    padding:14px 16px;
  }

  .hero-left h1{
    font-size:38px;
  }

  .hero-description{
    font-size:15px;
    margin-bottom:30px;
  }

  .hero-section{
    padding:30px 14px 60px;
  }

  .hero-container{
    gap:40px;
  }

  .venue-card img{
    height:280px;
  }

  .venue-content{
    padding:18px;
  }

  .venue-top h3{
    font-size:20px;
  }

  .venue-bottom{
    font-size:13px;
  }

  .categories-section{
    padding:0 14px 80px;
  }

  .section-header h2{
    font-size:30px;
    margin-bottom:36px;
  }

  .section-header p{
    font-size:11px;
  }

  .category-card{
    padding:22px;
  }

  .category-card h3{
    font-size:16px;
  }

  .category-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    margin-bottom:18px;
  }

  .categories-grid{
    gap:14px;
  }

  .search-box{
    padding:16px;
    border-radius:28px;
  }

  .tags span{
    font-size:13px;
    padding:8px 14px;
  }

  .stats-row{
    font-size:13px;
    gap:8px;
  }

  .mobile-menu{
    top:80px;
    left:14px;
    right:14px;
    padding:20px;
    border-radius:24px;
  }

  .floating-card{
    padding:14px 18px;
    border-radius:22px;
  }

  .floating-card h4{
    font-size:17px;
  }

  .floating-card p{
    font-size:12px;
  }

  .booking-card{
    top:-12px;
    left:-12px;
  }

  .tour-card{
    bottom:-12px;
    right:-12px;
  }

  .logo-text{
    font-size:22px;
  }

  .logo-icon-img{
    height:34px;
  }

  .logo-area{
    gap:8px;
  }
}

@media(max-width:420px){
  .navbar-wrapper{
    padding:10px;
  }

  .navbar{
    padding:10px 14px;
    border-radius:50px;
  }

  .hero-left h1{
    font-size:30px;
    margin-bottom:18px;
  }

  .hero-description{
    font-size:14px;
    line-height:1.6;
  }

  .hero-section{
    padding:24px 12px 50px;
  }

  .venue-card img{
    height:220px;
  }

  .venue-card{
    border-radius:28px;
  }

  .venue-content{
    padding:16px;
  }

  .venue-top h3{
    font-size:18px;
  }

  .rating-box{
    padding:6px 12px;
    font-size:12px;
    border-radius:14px;
  }

  .categories-section{
    padding:0 12px 60px;
  }

  .categories-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .category-card{
    padding:18px;
    border-radius:22px;
  }

  .category-icon{
    width:44px;
    height:44px;
    margin-bottom:14px;
  }

  .category-card h3{
    font-size:14px;
  }

  .section-header h2{
    font-size:26px;
  }

  .search-box{
    padding:14px;
  }

  .search-box input,
  .search-box select{
    padding:14px 16px;
    font-size:14px;
    border-radius:18px;
  }

  .search-box button{
    padding:14px 20px;
    font-size:14px;
  }

  .tags span{
    font-size:12px;
    padding:6px 12px;
  }

  .hero-container{
    gap:30px;
  }

  .bg-blur{
    width:200px;
    height:200px;
    filter:blur(80px);
  }

  .blur-1{
    top:20px;
    left:-60px;
  }

  .blur-2{
    bottom:-30px;
    right:-60px;
  }

  .logo-text{
    font-size:20px;
  }

  .logo-icon-img{
    height:30px;
  }

  .menu-toggle span{
    width:20px;
    height:2px;
  }

  .mobile-menu{
    top:72px;
    left:10px;
    right:10px;
    padding:16px;
    border-radius:20px;
    gap:14px;
  }

  .mobile-menu a:not(.mobile-cta){
    font-size:14px;
  }

  .mobile-login,
  .mobile-cta{
    padding:14px;
    font-size:14px;
    border-radius:16px;
  }

  .booking-card,
  .tour-card{
    display:none;
  }
}
.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-icon-img{
  height:42px;
  width:auto;
  object-fit:contain;
}

.logo-text{
  font-family:'Poppins',sans-serif;
  font-size:28px;
  font-weight:700;
  color:#111111;
}
/* ========================= */
/* Mobile Navbar */
/* ========================= */

.menu-toggle{

  display:none;

  flex-direction:column;

  gap:5px;

  cursor:pointer;
}

.menu-toggle span{

  width:24px;
  height:2px;

  background:#111111;

  border-radius:10px;

  transition:0.3s ease;
}

/* Mobile Menu */

.mobile-menu{

  position:absolute;

  top:95px;
  left:20px;
  right:20px;

  background:white;

  border-radius:28px;

  padding:24px;

  display:flex;
  flex-direction:column;

  gap:18px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);

  opacity:0;
  visibility:hidden;

  transform:
  translateY(-10px);

  transition:0.3s ease;

  z-index:999;
}

.mobile-menu.active{

  opacity:1;
  visibility:visible;

  transform:
  translateY(0);
}

.mobile-menu a:not(.mobile-cta){

  text-decoration:none;

  color:#111111;

  font-size:16px;
  font-weight:500;
}

/* Mobile Buttons */

.mobile-login{

  border:none;

  background:#F7F4EF;

  padding:16px;

  border-radius:18px;

  font-size:15px;
  font-weight:600;

  cursor:pointer;
}

.mobile-cta{

  border:none;

  background:#111111;
  color:white;

  padding:16px;

  border-radius:18px;

  font-size:15px;
  font-weight:600;

  cursor:pointer;
}

/* ========================= */
/* Responsive Navbar */
/* ========================= */

@media(max-width:900px){

  .nav-links,
  .nav-actions{

    display:none;
  }

  .menu-toggle{

    display:flex;
  }

  .navbar{

    padding:16px 22px;
  }

}
.primary-btn,
.mobile-cta{

  text-decoration:none;

  display:inline-flex;

  align-items:center;
  justify-content:center;
}
.venue-card img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

}
@media (max-width: 768px){

    .hero{

        grid-template-columns: 1fr;

    }

    .venue-card{

        margin-top: 30px;

    }

    .venue-card img{

        height: 220px;

    }

    .venue-content{

        padding: 20px;

    }

    .venue-bottom{

        flex-direction: column;

        align-items: flex-start;

    }

}
.category-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.no-venues{
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.no-venues h3{
    font-size: 28px;
    margin-bottom: 12px;
    color: #1f2937;
}

.no-venues p{
    max-width: 500px;
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    margin-top:120px;

    padding:80px 20px 30px;

    background:#fff;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-brand h2{

    font-size:30px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#777;

    line-height:1.8;

}

.footer-column h4{

    margin-bottom:20px;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column a{

    text-decoration:none;

    color:#777;

    margin-bottom:14px;

    transition:0.3s;

}

.footer-column a:hover{

    color:#111;

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid #eee;

    color:#888;

}

/* Responsive */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;

    }

}