*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
       font-family: system-ui;
    color:#fff;
    overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:18px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
	text-transform: uppercase;
}

.logo{
    font-family:'Playfair Display', serif;
    font-size:26px;
}
.logo span{
    display:block;
    font-size:11px;
    letter-spacing:2px;
    color:#d4af37;
}

/* ================= DESKTOP NAV ================= */
.desktop-nav ul{
    list-style:none;
    display:flex;
    gap:32px;
}
.desktop-nav a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    position:relative;
    padding-bottom:4px;
	    font-family: system-ui;
}
.desktop-nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.3s;
}
.desktop-nav a:hover::after{
    width:100%;
}

/* ================= CTA ================= */
.cta-btn{
    background:#7a1d2e;
    padding:11px 22px;
    border-radius:6px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
}

/* ================= HAMBURGER ================= */
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.menu-toggle span{
    width:26px;
    height:2px;
    background:#fff;
    margin:5px 0;
}

/* ================= HERO (HEIGHT REDUCED) ================= */
.hero{
    height:75vh; /* ↓ reduced height */
    background:url("../images/banner2.png") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
.hero-content{
    position:relative;
    max-width:700px;
}
.hero h1{
    font-family:Source Serif Pro;
    font-size:56px;
    margin-bottom:16px;
}
.hero p{
    font-size:17px;
    line-height:1.6;
}

/* ================= MOBILE NAV (REAL FIX) ================= */
.mobile-nav{
    position:fixed;
    top:0;
    right:-320px;        /* FULLY HIDDEN */
    width:300px;
    height:100vh;
    background:#111;
    padding:90px 30px;
    transition:0.4s ease;
    z-index:999;
}
.mobile-nav.active{
    right:0;             /* RTL slide */
}
.mobile-nav ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:26px;
}
.mobile-nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    letter-spacing:1px;
}

/* ================= OVERLAY ================= */
.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
      z-index:1000;
	    height: 93px;
  
}

.overlay.active{
    opacity:1;
    visibility:visible;
}


/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    header{
        padding:18px 20px;
    }
    .desktop-nav,
    .cta-btn{
        display:none;
    }
    .menu-toggle{
        display:flex;
    }
    .hero{
        height:65vh;
    }
    .hero h1{
        font-size:30px;
    }
	    .hero p{
        font-size:15px;
    }
}

/* ================= Our Story ================= */


    .our-story {
        max-width: 1200px;
        margin: auto;
        padding: 80px 20px;
		color: #2b2b2b;
		
		
    }

    .story-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .story-image {
        flex: 1;
    }

    .story-image img {
        width: 80%;
        height: auto;
        border-radius: 4px;
        display: block;
    }

    .story-content {
        flex: 1;
		font-family: Source Serif Pro;
    }

    .story-label {
        display: flex;
        align-items: center;
        font-size: 14px;
        letter-spacing: 2px;
        color: #c89b3c;
        margin-bottom: 15px;
        text-transform: uppercase;
		
    }

    .story-label::before {
        content: '';
        width: 50px;
        height: 1px;
        background: #c89b3c;
        margin-right: 15px;
    }

    .story-title {
        font-size: 42px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 20px;
		font-family: system-ui;
    }

    /* Tablet */
    @media (max-width: 992px) {
        .story-wrapper {
            gap: 40px;
        }

        .story-title {
            font-size: 30px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .our-story {
            padding: 50px 15px;
        }

        .story-wrapper {
            flex-direction: column;
        }

        .story-title {
            font-size: 30px;
        }

        .story-label {
            margin-top: 20px;
        }
    }

/* Our Philosophy */

.philosophy{
  background: #faf8f4;
  color: #2b2b2b;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-image img {
  width: 80%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.philosophy-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: Source Serif Pro;
      font-weight: normal;
}

.philosophy-content h2 span {
  font-weight: 700;
}

.line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #c9a14a;
  margin-bottom: 20px;
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4a4a4a;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item .icon {
  font-size: 22px;
  color: #8a1d2f;
  line-height: 1;
  margin-top: 4px;
}

.feature-item .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item .text p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .philosophy-content h2 {
    font-size: 30px;
  }
}

/*  celebrity */


    .celebrity {
        margin: 0;
 
    }
    .hero-section {
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }




    .hero-content2 p {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 35px;
    }

    .hero-content2 a {
        display: inline-block;
        background-color: #6b1d2e;
        color: #fff;
        text-decoration: none;
        padding: 14px 40px;
        font-size: 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
		font-family:system-ui;
    }

    .hero-content2 a:hover {
        background-color: #541625;
    }
	
.heading h2{
 
    font-size:42px;
    color:#1e2a3a;
    font-weight:100;
	font-weight:700;
	    font-family: Source Serif Pro;
}


.heading p{
padding:17px 0 27px;
font-family: system-ui;
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .heading h2{
        font-size:30px;
    }

    .heading p{
   
        line-height:1.7;
    }
}

    /* Responsive */
    @media (max-width: 768px) {
        .hero-content2 h1 {
            font-size: 2.2rem;
        }

        .hero-content2 p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content2 h1 {
            font-size: 1.8rem;
        }

        .hero-content2 a {
            padding: 12px 30px;
        }
    }
	
	footer {
    background-color: #6b1d2e;
    color: #ffffff;
    padding: 60px 40px 30px;
}

/* ================= venue (HEIGHT REDUCED) ================= */
.venue{
    height:75vh; /* ↓ reduced height */

    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
}
.venue::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
.venue-content{
    position:relative;
    max-width:850px;
}
.venue h1{
    font-family:Source Serif Pro;
    font-size:56px;
    margin-bottom:16px;
}
.venue p{
    font-size:17px;
    line-height:1.6;
}
/* ================= RESPONSIVE ================= */
@media(max-width:991px){

    .venue h1{
        font-size:30px;
    }
	.venue p{
    font-size:15px;
}
}


.location-section{
  padding: 70px 20px;
      background: #fbf9f6;
}

.location-container{
  max-width: 1200px;
  margin: auto;
}

.section-title{
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2{
  font-size: 42px;
  color: #1f2937;;
  font-weight: 600;
  position: relative;
  display: inline-block;
  font-family: Source Serif Pro;
}

.section-title h2::before,
.section-title h2::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #d6a461;
}

.section-title h2::before{
  left: -80px;
}

.section-title h2::after{
  right: -80px;
}

.location-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.location-card{
  background: #ffffff;;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.location-card:hover{
  transform: translateY(-6px);
}

.location-img{
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.location-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-content{
  padding: 20px;
  text-align: center;
}

.location-content h3{
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;;
}

/* Tablet */
@media (max-width: 991px){
  .location-grid{
    gap: 25px;
  }

  .section-title h2{
    font-size: 34px;
  }

  .location-img{
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 767px){
  .location-grid{
    grid-template-columns: 1fr;
  }

  .section-title h2{
    font-size: 30px;
  }

  .section-title h2::before,
  .section-title h2::after{
    display: none;
  }

  .location-img{
    height: 260px;
  }
}

/* ================= venue detail (HEIGHT REDUCED) ================= */
.venue-detail{
    height:75vh; /* ↓ reduced height */
   background: center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
}
.venue-detail::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
.venue-detail-content{
    position:relative;
    max-width:850px;
}
.venue-detail h1{
    font-family:Source Serif Pro;
    font-size:56px;
    margin-bottom:16px;
}
.venue-detail p{
    font-size:17px;
    line-height:1.6;
}
/* ================= RESPONSIVE ================= */
@media(max-width:991px){

    .venue-detail h1{
        font-size:30px;
    }
	   .venue-detail p{
        font-size:15px;
    }
}

.vh-venue-section {
  padding: 80px 20px;
  background: #ffffff;
 
}

.vh-venue-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Image */
.vh-venue-image {
  position: relative;
  flex: 1;
}

.vh-venue-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.vh-venue-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4a437;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Content */
.vh-venue-content {
  flex: 1;
}

.vh-venue-label {
  font-size: 14px;
  color: #d4a437;
  text-transform: uppercase;
}

.vh-venue-title {
  font-size: 42px;
  margin: 10px 0;
  color: #1c2230;
  font-family: Source Serif Pro;
}

.vh-venue-divider {
  width: 60px;
  height: 2px;
  background: #d4a437;
  margin-bottom: 20px;
}

.vh-venue-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
      font-family: system-ui;
}

/* Meta */
.vh-venue-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.vh-venue-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 500;
}

.vh-venue-icon {
  font-size: 18px;
}

/* Features */
.vh-venue-subtitle {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1c2230;
}

.vh-venue-features {
  padding-left: 18px;
  margin-bottom: 20px;
}

.vh-venue-features li {
  margin-bottom: 8px;
  color: #555;
}

/* Ideal */
.vh-venue-ideal {
  margin-bottom: 30px;
  color: #333;
      font-family: system-ui;

}

/* Button */
.vh-venue-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #6a1b2f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.vh-venue-btn:hover {
  background: #4e1323;
}

/* Responsive */
@media (max-width: 991px) {
  .vh-venue-container {
    flex-direction: column;
    gap: 40px;
  }

  .vh-venue-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .vh-venue-meta {
    flex-direction: column;
    gap: 15px;
  }

  .vh-venue-title {
    font-size: 30px;
  }
}

/* Layout */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* KEY FIX */
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
}

/* Brand */
.footer-logo {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 600;
}

.footer-logo span {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 2px;
    color: #f3c969;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0;
    max-width: 280px;
	    font-family: system-ui;
}

/* Social */
.social-icons a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f3c969;
}

/* Titles */
.footer-title {
    color: #f3c969;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 24px; /* ALIGN TITLES */
	    font-family: system-ui;
}

/* Links */
.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    margin-bottom: 14px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: 0.3s;
	    font-family: system-ui;
}

.footer-links a:hover {
    color: #f3c969;
}

/* Services column alignment */
.footer-col.services {
    justify-content: space-between;
}

.footer-note {
    font-size: 12px;
    color: #e6cfcf;
    line-height: 1.6;
    margin-top: auto;
    padding-top: 10px;
	font-family: system-ui;
}

/* Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}
.contact-item span{font-family:system-ui;}

.contact-item i {
    color: #f3c969;
    margin-top: 4px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
	font-family:system-ui;
}

.footer-bottom a:hover {
    color: #f3c969;
}
.footer-contact{font-family: system-ui;}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 50px 20px 25px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

