/* FULL PAGE CENTER LAYOUT */
body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #222;
  margin: 0;
}

/* NAV (already good, but improved spacing) */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: nowrap;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 18px 24px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo {
  position: absolute;
  left: 24px;

  font-weight: 600;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  padding: 0px 18px;
  border-radius: 999px;
  
  transform: translateY(0);
  will-change: transform;
  
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
 
  display: inline-flex;
  justify-content: center;
  align-items: center;
  
  width: 110px;
  height: 38px;
  min-width: 90px;
  
  text-align: center;

  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  backdrop-filter: blur(8px);

  transition: all 0.25s ease;
}

.nav-links a:hover {
  background: rgba(17,17,17,0.85);
  color: #fff;
  border-color: #111;

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nav-links a.active {
  background: rgba(17,17,17,0.08);
  border-color: rgba(17,17,17,0.2);
  color: #111;
  font-weight: 500
}

.nav-links a.active:hover {
  background: rgba(17,17,17,0.12);
}





.header {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 0 20px;

  /* ✨ subtle luxury gradient background */
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f6f6f6
  );
}

/* BIG TITLE IMPACT */
.header h1 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;

  /* subtle depth */
  color: #111;
}

/* SUBTITLE */
.header p {
  font-size: 18px;
  color: #666;
  letter-spacing: 1px;
}

button {
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
 
  background: #111;
  color: #fff;

  cursor: pointer;
  font-size: 14px;

  transition: 0.2s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.hero-card {
  max-width: 750px;
  margin: -40px auto 60px auto;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  padding: 50px;

  text-align: center;

  /* real depth */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08);

  transform: translateY(-20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover lift effect */
.hero-card:hover {
  transform: translateY(-25px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12);
}

.hero-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-card p {
  color: #666;
  font-size: 16px;
}

/* HERO HEADER */
.hero-bg {
  height: 90vh;
  display: flex;
  align-items: flex-end;
  justify-content: center; /* use to be center*/
  text-align: center;

   /* title location */
  padding-bottom: 90px;
  
  position: relative;
  /* background image */
  background-image: url("../images/Home1.jpg");
  background-size: cover;
  background-position: center 30%;
}

.gallery-hero {
  height: 85vh;
  background-image: url("../images/gallery-hero.jpg");
  background-size: cover;
  background-position: center;
}

/* dark overlay */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 0;
}

/* FLOATING GLASS BOX */
.hero-content-box {
  position: relative;
  z-index: 1;

  text-align: center;
  padding: 40px 50px;
  border-radius: 20px;

  /*  CONTROL THIS FOR OPACITY */
  background: rgba(255, 255, 255, 0.12);

  /* glass blur effect */
  backdrop-filter: blur(12px);

  /* soft shadow = floating feel */
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);

  color: white;
  max-width: 600px;
}

.hero-content-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}



.hero-bg h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero-bg p {
  font-size: 18px;
  opacity: 0.9;
}


/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px;
}

/* PRICE CARD */
.price-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;

  padding: 30px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.price-card h2 {
  margin-bottom: 5px;
}

.price {
  font-size: 28px;
  margin-bottom: 10px;
}

.desc {
  color: #777;
  margin-bottom: 15px;
}

.price-card ul {
  padding-left: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* FEATURED PLAN */
.featured {
  border: 2px solid #111;
  transform: scale(1.03);
}

.badge {
  background: #111;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ADDONS */
.addons {
  list-style: none;
  padding: 0;
  color: #555;
}

/* SUBTITLE */
.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-top: 40px;
}

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 20px;
}


/* Pricing hero size */
.pricing-hero {
  height: 85vh; /* smaller than homepage */
  background-image: url("../images/pricing.jpg"); /* optional */
}

/* ADDONS CONTAINER */
.addons-box {
  max-width: 1100px;
  margin: 60px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  padding: 40px;

  border-radius: 24px;

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);

  text-align: center;
}

.addons-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* GRID INSIDE */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* INDIVIDUAL ITEM */
.addon-item h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.addon-item p {
  font-size: 18px;
  font-weight: 600;
}

.addon-item span {
  display: block;
  font-size: 13px;
  color: #777;
}

.hamburger {
  display: none;
}


.contact-form {
  max-width: 600px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: inherit;
  font-size: 14px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

.contact-card {
  max-width: 700px;
  margin: 80px auto;
}

/* form layout inside bubble */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* inputs inside glass style */
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);

  font-size: 14px;
  outline: none;

  transition: 0.2s ease;
}

/* focus effect */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(17,17,17,0.4);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* button consistency */
.contact-form button {
  margin-top: 10px;
}

/* HERO IMAGE SECTION */
.contact-hero {
  height: 85vh; /* slightly shorter for contact page */
  background-image: url("../images/contact.jpg"); /* your photo */
  background-size: cover;
  background-position: center;
}

/* push form below hero */
.contact-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* form bubble sizing */
.contact-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* optional spacing tweak */
.contact-card h2 {
  margin-bottom: 10px;
}

.static-card {
  transform: none !important;
  transition: none !important;
}

/* kill hover effects completely */
.static-card:hover {
  transform: none !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important;
}

.hint {
  font-size: 12px;
  color: #777;
  margin-top: 1px;
  margin-bottom: 1px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  margin-bottom: 18px;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.1);

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);

  font-family: inherit;
  font-size: 14px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #111;
}

.checkbox {
  display: flex;
  align-items: left;
  gap: 10px;

  font-size: 13px;
  color: #555;

  margin-bottom: 18px;

  white-space: nowrap; /* prevents weird wrapping */
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 12px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.checkbox input[type="checkbox"] {
  width: auto;   /* THIS is the key fix */
  flex-shrink: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  box-sizing: border-box;
}

input[type="checkbox"] {
  position: relative;
  top: -5px;
}



@media (max-width: 900px) {

  .hamburger {
    display: block;
    position: absolute;
    right: 24px;
    font-size: 26px;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

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

  .header h1 {
    font-size: 38px;
  }

  .header p {
    font-size: 14px;
  }

  .hero-bg h1 {
    font-size: 38px;
  }

  .hero-bg p {
    font-size: 14px;
  }

  button {
    padding: 10px 16px;
  }

  .hero-content-box {
    transform: translateY(40px);
    max-width: 90%;
  }
}


/* HERO IMAGE FOR ABOUT PAGE */
.about-hero {
  height: 85vh;
  background-image: url("../images/about-hero.jpg");
}

/* ABOUT FLOATING CARD */
.about-card {
  max-width: 1100px;
  margin: 60px auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  padding: 40px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* TEXT SIDE */
.about-text h2 {
  margin-bottom: 10px;
}

.about-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* IMAGE SIDE */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .about-image img {
    height: 300px;
  }
}


/* GALLERY GRID */
.gallery-grid {
  column-count: 3;
  column-gap: 18px;

  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* IMAGE ITEMS */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  border-radius: 18px;

  display: block;

  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.015);
  opacity: 0.96;
}

/* LIGHTBOX */
.lightbox {
  display: none;

  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0,0,0,0.92);

  justify-content: center;
  align-items: center;
}

/* active */
.lightbox.show {
  display: flex;
}

/* image */
.lightbox img {
  max-width: 90%;
  max-height: 85vh;

  border-radius: 12px;
}

/* close */
.close {
  position: absolute;
  top: 25px;
  right: 35px;

  color: white;
  font-size: 42px;
  cursor: pointer;
}

/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  color: white;
  font-size: 52px;
  cursor: pointer;

  user-select: none;
  padding: 20px;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* ========================================
  background: rgba(0,0,0,0.94);

  justify-content: center;
  align-items: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;

  border-radius: 18px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;

  color: white;
  font-size: 46px;

  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  color: white;
  font-size: 60px;

  cursor: pointer;
  user-select: none;

  padding: 20px;
}

.arrow.left {
  left: 25px;
}

.arrow.right {
  right: 25px;
}

/* ========================================
   GALLERY CATEGORY SECTION
======================================== */

.gallery-categories {
  max-width: 1200px;
  margin: 80px auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;

  padding: 0 20px;
}


/* ========================================
   FLOATING CATEGORY CARDS
======================================== */

.category-card {
  text-decoration: none;
  color: #111;

  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);

  
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* hover effect */
.category-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.12);
}


/* IMAGE */
.category-card img {
  width: 100%;
  height: 450px;

  object-fit: cover;

  display: block;
}

/* weddings */
.category-card:nth-child(1) img {
  object-position: center 50%;
}

/* seniors */
.category-card:nth-child(2) img {
  object-position: center 45%;
}

/* families */
.category-card:nth-child(3) img {
  object-position: center 45%;
}
/* TEXT CONTENT */
.category-content {
  padding: 28px;
  text-align: center;
}

.category-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.category-content p {
  color: #666;
  line-height: 1.5;
}


/* ========================================
   GALLERY MASONRY GRID
======================================== */

.gallery-grid {
  column-count: 3;
  column-gap: 18px;

  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  border-radius: 18px;

  display: block;

  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.015);
  opacity: 0.96;
}


/* ========================================
   LIGHTBOX
======================================== */

.lightbox {
  display: none;

  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0,0,0,0.94);

  justify-content: center;
  align-items: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;

  border-radius: 18px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;

  color: white;
  font-size: 46px;

  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  color: white;
  font-size: 60px;

  cursor: pointer;
  user-select: none;

  padding: 20px;
}

.arrow.left {
  left: 25px;
}

.arrow.right {
  right: 25px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

  .gallery-grid {
    column-count: 2;
  }

}

@media (max-width: 600px) {

  .gallery-grid {
    column-count: 1;
  }

  .category-card img {
    height: 240px;
  }

  .category-content {
    padding: 20px;
  }

  .category-content h2 {
    font-size: 26px;
  }

  .arrow {
    font-size: 42px;
  }

}
