/* ========== RESET / BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}


body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Container utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== NAVBAR ========== */
/* === NAVBAR BASE === */
.navbar {
  width: 100%;
  background-color: #000;
  padding: 10px 40px;
  box-sizing: border-box;
}

/* FLEX CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === LOGO STYLES === */

/* Home Page: logo on right */
.home-page .nav-container {
  flex-direction: row; /* logo moves to right */
}

/* About Page: logo on left */
.about-page .nav-container {
  flex-direction: row; /* logo stays on left */
}

/* Universal logo size */
.logo {
  width: 60px;
  height: auto;
  margin-left:-40px;
}

/* === NAVIGATION STYLES === */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style:none;
  padding:0;
  margin:0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aaa;
}

/* === HAMBURGER TOGGLE === */
.nav-toggle {
  display: none;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border: 1px solid #333;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }

  .nav-right {
    position: relative;
  }
  .logo {
    margin-left: 0; /* ✅ reset only on mobile */
  }
}



/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;            /* full viewport height */
  display: flex;
  padding:60px 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;   /* fallback */
  background-image: url('images/collage.jpg');
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  background-attachment:scroll;
  overflow: hidden;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Darkens image slightly */
  z-index: 1;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* black overlay fade */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;               /* put text above overlay */
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight:bold;
  letter-spacing: 2px;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  padding:0 10px;
  margin: 0 auto;
  color:#eee;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}


/* Hide hamburger toggle by default (desktop) */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}


@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .hero {
    padding: 40px 15px;
    background-attachment: scroll;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .hero {
    background-size: contain; /* show full image */
    background-repeat: no-repeat;
    background-position: center;
    min-height: 300px; /* adjust so it’s tall enough */
  }
 

  .nav-links {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border: 1px solid #333;
    display: none; /* hidden by default */
    gap: 15px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-right {
    position: relative;
  }
 .about-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
 .about-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
    order: 2; /* text below */
    text-align: center;
  }

  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 10px;
    order: -1; /* image above */
  }
 

  .about-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-text p {
    font-size: 1rem;
    text-align: center;
  }

  .about-container {
    padding: 40px 15px;
  }

 .about-image img {
  position: relative;
    max-height: 350px;
    object-fit:contain;
    width: 100%;
  }
}
  /* Base Styles */
.about-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background-color: #000;
  color: #fff;
}

.about-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.about-text, .about-image {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.about-text {
  flex-direction: column;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 700px;
  border-radius: 0;
}

/* ======== GALLERY HERO ======== */
.gallery-heading {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
}
.gallery-heading::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background-color: #fff;
  margin: 10px auto 0;
  animation: underlineGrow 1.2s ease-out forwards;
}
@keyframes underlineGrow {
  from { width: 0; }
  to { width: 500px; }
}

.gallery-subheading {
  font-size: 1.3rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== CATEGORY GRID ======== */
.gallery-categories {
  padding: 60px 20px;
  background: #111;
  color: white;
  text-align: center;
}

.gallery-categories h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category img {
  width: 100%;
  height: 300px;
  object-fit:contain;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.category p {
  margin-top: 12px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}

.category:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.7);
}

/* ======== LIGHTBOX ======== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  overflow: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.lightbox-content img {
  max-width:90vw;
  max-height: 80vh;
  border-radius: 10px;
  object-fit:contain;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

/* ======== INSTAGRAM CTA ======== */
.instagram-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
}

.instagram-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}

.instagram-cta .btn {
  background: #fff;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.instagram-cta .btn:hover {
  background: #ccc;
}

/* === GOOGLE REVIEWS SECTION === */
/* Wrapper for centering summary + reviews */
.reviews-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
  max-width: 1200px; /* overall width */
  margin: 0 auto;    /* center section */
}
.r-header {
  font-size: clamp(2rem, 5vw, 3.5rem); 
  /* min: 2rem on very small screens,
     5vw = scales with viewport width,
     max: 3.5rem on big screens */
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  color: #111;
  position: relative;
}

.r-header::after {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  background-color: #4285F4;
  margin: 12px auto 0;
  border-radius: 2px;
}



/* Review Summary */
.review-summary {
  display: block;
  margin: /*20px*/ auto /*40px*/; /* center + spacing */
  max-width: 200px;
  padding: 0;
  /*background: #f9f9f9;*/
  /*border: 1px solid #e0e0e0;*/
  border-radius: 12px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.06);*/
  text-align: center;
  font-size: 1.2rem;
}

.review-summary .summary-header {
  font-size: clamp(1.4rem, 3vw, 2rem); /* responsive */
  font-weight: bold;
  color: #222;
}

.review-summary .summary-stars {
  font-size: clamp(1.6rem, 4vw, 2.5rem); /* bigger, responsive */
  color: gold;
  display: block;
  margin-bottom: 5px;
}

.review-summary .summary-rating {
  font-size: clamp(1.2rem, 3vw, 1.8rem); /* responsive */
  color: #fbbc05;
  margin-bottom: 8px;
  font-weight: bold;
}

.review-summary .summary-count {
  font-size: clamp(0.9rem, 2vw, 1.1rem); /* smaller but responsive */
  color: #666;
}

/* Review Grid */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* center cards */
  margin-top: 20px;
}

/* Individual Review Card */
.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  width: clamp(240px, 30%, 300px); /* responsive width */
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

/* Reviewer Header */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;

}

.reviewer-avatar {
  width: clamp(35px, 6vw, 50px); /* responsive avatar size */
  height: clamp(35px, 6vw, 50px);
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid #ddd;
}

.reviewer-name {
  font-weight: bold;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* responsive name */
  color: #202124;
}

.review-rating {
  color: #fbbc05;
  font-size: clamp(0.8rem, 2vw, 1rem); /* responsive star rating */
}

.review-text {
  font-size: clamp(0.85rem, 2.3vw, 1rem);
  line-height: 1.5;
  color: #3c4043;
  margin-top: 6px;
}

.review-date {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: #777;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .review-card {
    width: 90%;
  }
}
.see-more {
  text-align: center;
  margin-top: 30px;
}

.see-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4285F4; /* Google blue */
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.see-more-btn:hover {
  background-color: #3367D6;
}



/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  color: #fff;
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #eee;
}

.modal-content span {
  font-size: 0.95rem;
  color: #aaa;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 500px) {
  .modal-content p {
    font-size: 1rem;
  }
}
.booking-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
  background-color: rgba(0, 0, 0, 0.3); /* dark translucent instead of solid white */
  overflow: hidden;
}

.booking-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/logo2.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;  /* increase opacity so blur effect is more visible */
  z-index: 1;
}

.booking-form {
  background: rgba(255, 255, 255, 0.15); /* slightly more opaque */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  color: #000;  /* switch text to dark for contrast on light blur */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}



.booking-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color:#fff;
}

.booking-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color:#fff;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.booking-form button {
  margin-top: 20px;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #444;
}
.contact-info {
  margin-top: 30px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 5px;        /* small gap under the email */
  margin-bottom: 10px;     /* gap above the footer */
  display: flex;
  justify-content: center; /* center icons horizontally */
  gap: 20px;              /* spacing between icons */
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;       /* ✅ Remove underline */
  display: inline-flex;        /* ✅ Better icon alignment */
  align-items: center;         /* ✅ Vertically center icon */
  justify-content:space-between;
  transition: color 0.3s ease;
  gap:50px;
}


.social-icons a:hover {
  color: #aaa;
}
.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  border-top: 1px solid #333;
}

.site-footer p {
  margin: 0;
}
/* Mobile view adjustments */
@media (max-width: 768px) {
  .about-image img {
    width: 100%;       /* fill container width */
    height: auto;      /* maintain aspect ratio */
    max-height: 400px; /* optional height limit */
    object-fit: cover; /* crop if needed */
    display: block;
    margin: 0 auto;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;   /* full width */
    max-width: 100%;
    padding: 10px;    /* smaller padding on mobile */
  }

  .about-image {
    order: -1;        /* ensure image is above text */
  }

  .about-container {
    flex-direction: column; 
    text-align: center;
  }
}





