
/*------------------------Weddings------------*/

/* ===== Wedding page nav sizing only ===== */

/* Logo */
.weddings-sub-header nav img {
  height: 80px;
  width: 270px;      /* increase logo size */
}

/* Nav links text */
.weddings-sub-header .nav-links ul li a {
  color: #555555;
  font-weight: 600;
}



/* Hero title */
.weddings-sub-header h1 {
  font-family: "Tangerine", cursive;
  font-size: 140px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
  color: #b7a15a;
}

/* Section headings */
.wedding-packages h2,
.wedding-addons h2 {
  font-family: "Tangerine", cursive;
  font-size: clamp(100px, 15vw, 130px);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #575757;
}




/* Package names */
.package-card h3 {
  font-family: "Tangerine", cursive;
  font-size: 90px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 15px;
}


.price-btn {
  height: 90px;                 /* SAME height for all buttons */
  width: 260px;                 /* SAME width for all buttons */
  padding: 0;                   /* prevent size changes */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: "Tangerine", cursive;
  font-size: 42px;              /* TEXT SIZE ONLY */
  letter-spacing: 3px;
  font-weight: 700;

  border-radius: 60px;
  text-decoration: none;
  color: #fff;
}

/* Keep body text clean and readable */
.price-text{
  font-family: "Tangerine", cursive;
  font-weight: 800;
  font-size: 50px;
}

/* Wedding page paragraph text only */
.wedding-packages p,
.wedding-addons p,
.weddings p,
.package-card p,
.addon-card p {
  font-family: "Neuton", serif;
  line-height: 1.7;
}

/* Wedding page list text */
.wedding-packages li,
.wedding-addons li,
.package-card ul li {
  font-family: "Neuton", serif;
  line-height: 1.6;
}




.weddings-sub-header {
  position: relative;
  height: 35vh;
  width: 100%;
  background: url('WebsiteImages/weddingbackdrop.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  font-size: 40px;
}

.weddings-sub-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.055) 0%,
    rgba(255,255,255,0.7) 50%,
    #ffffff 100%
  );
}

.weddings-sub-header nav {
  position: relative;
  z-index: 10;   /* nav ALWAYS on top */
}

.weddings-sub-header h1 {
  position: relative;
  z-index: 1;    /* title sits below nav */
}



.weddings-sub-header h1 {
  margin-top: 100px;
}

.weddings{
  width: 100%;
  padding: 80px 20px 50px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}

.weddings-col img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.weddings-col-first {
  text-align: left;
  padding: 20px;
}

.weddings-col-first h1 {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  color: #fc3f40;
  margin-bottom: 20px;
  text-align: left;
}

.weddings-col-first{
  font-size: 24px;
  color: #fff;
}


.media-types {
  position: relative;
  overflow: hidden;
}

.media-types::before {
  pointer-events: none; /* ensures overlays don't block clicks */
}

.learn-more-btn:hover {
  background-color: #ff5c5c;
}

.wedding-packages {
  width: 100%;
  padding: 80px 20px 50px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #ececec);
}


.wedding-intro{
  color:#ffffff;
}

.wedding-packages p{
  max-width: 700px;
  margin: 0 auto 40px;
  color: #474747;
  font-size: 24px;
  text-align: center;
}

.packages-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  color: #000;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  flex: 1 1 280px;
  max-width: 350px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.package-card:hover {
  transform: translateY(-8px);
}


@media (max-width: 768px) {
  .weddings-sub-header nav img {
    height: 60px;   /* increase logo height */
    width: auto;     /* keeps correct aspect ratio */

  }
  .weddings-sub-header h1{
    font-size: 100px;
  }

  
}



.package-card.essential h3 {
  color: #be906e; /* Bronze */
}

.package-card.premium h3 {
  color: #c0c0c0; /* Silver */
}

.package-card.luxury h3 {
  color: #b7a15a; /* Gold */
}



.price-btn:hover {
  transform: scale(1.05);
}

/* Bronze */
.price-btn.bronze {
  background: linear-gradient(135deg, #c09f88, #be906e);
}

/* Silver */
.price-btn.silver {
  background: linear-gradient(135deg, #c0c0c0, #8f8f8f);
}

/* Gold */
.price-btn.gold {
  background: linear-gradient(135deg, #bdaf84, #bea54f);

}


.package-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.package-card ul li {
  margin-bottom: 8px;
  font-size: 20px;
  color: rgb(61, 61, 61)
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card:nth-child(1):hover {
  box-shadow: 0 0 25px rgba(209, 106, 21, 0.8); /* Blue glow for Essential */
}

.package-card.premium:hover {
  box-shadow: 0 0 25px rgba(163, 156, 156, 0.9); /* Silver glow for Premium */
}

.package-card.luxury:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.9); /* Gold glow for Luxury */
}

/* ====== Wedding Package Backgrounds ====== */

/* Shared styling for all cards */
.wedding-packages .package-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; /* make text readable on photo backgrounds */
  position: relative;
  overflow: hidden;
}

/* Optional: add a dark overlay for readability */
.wedding-packages .package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.212);
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

/* Ensure text sits above the overlay */
.wedding-packages .package-card * {
  position: relative;
  z-index: 1;
}

/* Individual background images */
.package-card.essential {
  background-image: url("WebsiteImages/bronzewedding.jpg");
}

.package-card.premium {
  background-image: url("WebsiteImages/silverwedding.jpg");
}

.package-card.luxury {
  background-image: url("WebsiteImages/goldwedding.jpg");
}

/* Center the "Book Now" button */
.package-card .learn-more-btn {
  display: block;
  margin: 20px auto 0 auto; /* centers horizontally */
  text-align: center;
}

.package-card ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin: 15px 0;
  text-align: left;
}

.package-card ul li {
  position: relative;
  padding-left: 30px; /* space for the image */
  margin-bottom: 10px;
  color: #535353;
}

/* Use your triangle image as the bullet */
.package-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px; /* adjust based on your image */
  height: 12px;
  background: url("WebsiteImages/redtriangle.png") no-repeat center;
  background-size: contain;
}


/*------------------------ Wedding Add-Ons ------------------------*/

.wedding-addons {
  width: 100%;
  padding: 80px 20px 60px;
  background: linear-gradient(to bottom, #ececec, #e0e0e0);
  text-align: center;
  color: #fff;
}

.wedding-addons h2 {
  font-size: 4rem;
  color: #b7a15a;
  margin-bottom: 15px;
}

.wedding-addons p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 23px;
  color: #585858;
}

.addons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.addon-card {
  background-image: url(WebsiteImages/weddingaddons.jpg);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  padding: 25px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(196, 178, 75, 0.6);
}

.addon-card h3 {
  color: #b7a15a;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: center;
}

.addon-card p {
  color: #585858;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.addon-price {
  display: block;
  background: #b7a15a;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin: 20px auto 0;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-price:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 212, 104, 0.8);
}

/* White overlay for wedding add-on cards */
.addon-card {
  position: relative;
  overflow: hidden;
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.904); /* adjust opacity here */
  border-radius: 20px;
  z-index: 0;
}

/* Keep text above overlay */
.addon-card * {
  position: relative;
  z-index: 1;
}


/* ---------- FOOTER ---------- */
.wedding-footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #cacaca;
}

.wedding-footer h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 22px;
}

.wedding-footer p {
  color: #ffffff;
  font-size: 14px;
}

.icons .fab {
  color: #ffffff;
  margin: 0 10px;
  font-size: 28px;
  cursor: pointer;
}

.wedding-footer .credit {
  font-size: 12px;
  color: #dadada;
  margin-top: 10px;
}

.wedding-footer .icons a {
    color: #fff;          /* icon color */
    font-size: 32px;      /* size of icons */
    margin: 0 12px;
    display: inline-block;
    transition: color 0.3s;
    text-decoration: none;
}

.footer .icons a:hover {
    color: #b7a15a;       /* hover colour */
}

/*-----------Wedding form-------*/

.wedding-enquiry {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #e0e0e0, #cacaca);
  text-align: center;
}

.wedding-enquiry h2 {
  font-family: "Tangerine", cursive;
  font-size: 110px;
  color: #b7a15a;
  margin-bottom: 20px;
}
.wedding-enquiry p{
  font-family: "Neuton", serif;
  color: #585858;
  font-size: 23px;
  padding-bottom: 20px;

}

.wedding-form {
  max-width: 600px;
  margin: 0 auto;
}

.wedding-form input,
.wedding-form textarea {
  width: 100%;
  padding: 18px 22px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 18px;
  font-family: "Neuton", serif;
}

.wedding-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Make price-btn work nicely as a form button */
.form-submit {
  border: none;
  cursor: pointer;
}

/* Base button (no scale) */
.price-btn,
.form-submit {
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}

/* Gold glow animation */
.price-btn.gold:hover,
.form-submit:hover {
  box-shadow: 0 0 20px rgba(183, 161, 90, 0.6),
              0 0 40px rgba(183, 161, 90, 0.4);
  filter: brightness(1.05);
}

.wedding-form .price-btn {
  font-size: 32px;
}

/* Gold glow (submit + gold price buttons) */
.price-btn.gold:hover {
  box-shadow: 0 0 25px rgba(183, 161, 90, 0.8);
}

.form-group select {
  width: 100%;
  padding: 18px 22px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 18px;
  font-family: "Neuton", serif;
  background: rgba(255,255,255,0.9);
  transition: border 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.9);
  transition: border 0.3s ease, box-shadow 0.3s ease;
  color: #585858;
}

.form-group option{
  font-family: "Neuton", serif;
}


html {
  scroll-behavior: smooth;
}

