
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #000;
    color: #fff;
}

/* Home Hero Section */
.home-hero {
    position: relative;
    height: 100vh;
    background: url('../images/home-bg.jpg') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.home-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 30px;
    color: #fff;
}

.home-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.home-content .highlight {
    color: #ffb6c1;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.home-btn {
    padding: 12px 25px;
    background: #b61553;
    color: #fff;
    border-radius: 6px;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.home-btn:hover {
    background: #a01349;
}

/* About Section Styling */
.about-upgraded {
    padding: 80px 20px;
    background: linear-gradient(to right, #1a1a1a, #2b0e16);
    color: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.about-photo {
    flex: 1 1 300px;
    text-align: center;
}

.about-photo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #b61553;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.about-photo img:hover {
    transform: scale(1.05);
}

.about-details {
    flex: 2 1 600px;
}

.about-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: #ffb6c1;
}

.about-details .quote {
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.8;
}

.about-details .subsection {
    margin-bottom: 30px;
}

.about-details .subsection h3 {
    font-size: 1.4rem;
    color: #ffb6c1;
    margin-bottom: 10px;
}

.about-details .subsection p,
.about-details .subsection ul {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.88;
}

.about-details .subsection ul {
    padding-left: 20px;
}

.duration-section {
    position: relative;
    padding: 80px 20px;
    background: url('../images/duration-bg.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.duration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(1px);
}

.duration-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.duration-content h2 {
    font-size: 2.6rem;
    color: #ffb6c1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

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

.duration-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.duration-box:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.15);
}

.duration-box .price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.signature-section {
    position: relative;
    padding: 90px 20px;
    background: url('../images/signature-bg.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.signature-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    animation: fadeInUp 1.5s ease;
}

.signature-content h2 {
    font-size: 2.6rem;
    color: #ffb6c1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.signature-content .subtext {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 35px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    padding: 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}

.book-now-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #b61553;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background: #9e1046;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.extras-section {
    position: relative;
    padding: 90px 20px;
    background: url('../images/extras-bg.jpg') center center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.extras-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.extras-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    animation: fadeIn 1.5s ease;
}

.extras-content h2 {
    font-size: 2.6rem;
    color: #ffb6c1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.extras-subtext {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    font-style: italic;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.extra-item {
    background: rgba(255,255,255,0.07);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    border-left: 5px solid #b61553;
    text-align: left;
    transition: background 0.3s ease, transform 0.3s ease;
}

.extra-item span {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.extra-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.gallery-section {
    background: #0a0a0a;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #ffb6c1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.gallery-subtext {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scrollGallery 30s linear infinite;
    transform-style: preserve-3d;
    align-items: center;
}

.carousel img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
    opacity: 0.6;
}

.carousel img:nth-child(3) {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes scrollGallery {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-60%); }
}

.terms-section {
  position: relative;
  background: url('../images/terms-bg.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: white;
}
.terms-overlay {
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  background: rgba(0,0,0,0.5);
}
.terms-content {
  position: relative;
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
.terms-content h2, .terms-content h3 {margin-top:20px;}
.terms-content ul {margin-left:20px;}

/* BOOKING SECTION */
.booking-section {
  position: relative;
  background: url('../images/booking-bg.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: white;
}

.booking-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.55);
}

.booking-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.10);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.booking-content h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
}

.booking-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-section input,
.booking-section textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
}

.booking-btn {
  padding: 14px;
  background: #ff8fbf;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* Success popup */
.popup {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  color: black;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 350px;
  border: 3px solid pink;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px;
  background: pink;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-section{
  position:relative;
  background:url('../images/contact-bg.jpg') center/cover no-repeat;
  padding:70px 20px;
  text-align:center;
  color:white;
}
.contact-overlay{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.35);
}
.contact-section h2{
  position:relative;
  font-size:28px;
  margin-bottom:30px;
}
.contact-icons{
  position:relative;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}
.icon-circle{
  width:70px;height:70px;
  border:2px dotted white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px;
  transition:0.3s;
}
.icon-circle img{
  width:40px;height:40px;
}
.icon-circle:hover{
  transform:scale(1.1);
  box-shadow:0 0 10px pink;
  border-color:pink;
}

/* REVIEWS SECTION */
.reviews-section{
  padding:70px 20px;
  text-align:center;
  background:rgba(0,0,0,0.2);
}
.reviews-section h2{
  font-size:30px;
  color:white;
  margin-bottom:30px;
}
.review-card{
  max-width:800px;
  margin:20px auto;
  padding:25px;
  border-radius:15px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.25);
  color:white;
  text-align:left;
}
.review-card .stars{
  font-size:20px;
  margin-bottom:10px;
  color:#ffb3d9;
}
.review-card p{
  font-size:16px;
  line-height:1.5;
}
.reviewer{
  display:block;
  margin-top:10px;
  font-style:italic;
  color:#ffe0f0;
}
.review-form{
  max-width:800px;
  margin:40px auto;
  padding:25px;
  background:rgba(255,255,255,0.12);
  border-radius:15px;
  backdrop-filter:blur(8px);
}
.review-form input,
.review-form textarea,
.review-form select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:none;
  border-radius:8px;
  background:rgba(255,255,255,0.25);
  color:white;
}
.review-btn{
  padding:14px;
  background:#ff8fbf;
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
  width:100%;
}

/* Override gallery size and speed */
.carousel img, .gallery-section img {
    width: 450px !important;
    height: 280px !important;
    object-fit: cover;
}

.carousel-track {
    animation: scrollGallery 10s linear infinite !important;
}

/* NEW GLASS TERMS SECTION */
.terms-wrapper{
  position:relative;
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:25px;
  padding:40px 20px;
}
.glass-box{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(8px);
  padding:25px;
  border-radius:15px;
  color:white;
}
.glass-box h3{
  margin-bottom:10px;
  font-size:22px;
}
.glass-box ul{
  margin-left:15px;
  line-height:1.6;
}
.glass-box p{
  line-height:1.6;
}

/* Enhanced Home Hero */
.home-hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  filter: brightness(0.85) contrast(1.15);
}

.home-content h1 {
  font-size: 48px !important;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.home-content .tagline {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.85;
}

.intro-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}

.home-btn {
  padding: 14px 28px;
  background: #ff8fbf;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.3s;
}

.home-btn:hover {
  background: #ff6ca8;
  box-shadow: 0 0 12px rgba(255, 140, 180, 0.6);
}


/* HOME HERO UPDATED */
.home-hero {
  background: url('../images/home-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.home-content.glass-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  max-width: 800px;
  text-align: center;
}

.home-content h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.home-content .tagline {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 10px;
}

.intro-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 17px;
  opacity: 0.92;
  line-height: 1.6;
}

.home-btn {
  padding: 14px 28px;
  background: #ff8fbf;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.3s;
}

.home-btn:hover {
  background: #ff6ca8;
  box-shadow: 0 0 12px rgba(255, 140, 180, 0.6);
}


/* HAMBURGER MENU */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  height: 4px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 25px;
  transition: 0.4s ease;
  z-index: 9998;
}

.mobile-nav a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.mobile-nav.show {
  right: 0;
}

/* TERMS HEADING */
.terms-heading {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}

.terms-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.terms-heading .terms-sub {
  font-size: 18px;
  opacity: 0.85;
  color: #f0e6f7;
}


to { opacity: 1; transform: translateY(0); }
}
