/* RESET & GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }

/*
body { font-family: 'Roboto', sans-serif; color: #fff; line-height: 1.6; background: #f9f7f2; }
*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #444;
  font-size: 1rem;       /* ~16px base text size */
  line-height: 1.7;      /* generous spacing for calm reading */
}



a { text-decoration: none; color: inherit; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/hero-desktop.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249,247,242,0.4), rgba(249,247,242,0.8));
}
.hero-content {
  position: relative;
  text-align: center;
  /*color: #c59b5a;*/
  color: #A49C96;
  z-index: 2;
  padding: 0 1rem;
  max-width: 90%;
}
/*
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
*/

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;

  /* LUXURY GOLD GRADIENT TEXT */
  /*background: linear-gradient(45deg, #f5e1b6, #c59b5a); /* light to medium gold */
  background: linear-gradient(45deg, #131731, #131731); /* light to medium gold */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for non-webkit browsers */
  color: #c59b5a; /* fallback */

/* subtle shadow for contrast (depth) */
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);

  /* subtle lift animation */
  animation: popIn 1s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}


/* Optional overlay behind hero text (makes text pop more) */
.hero-content {
  position: relative;
  text-align: center;
  color: #c59b5a;
  z-index: 2;
  padding: 1rem 2rem; /* breathing room */
  max-width: 90%;
  background: rgba(30,30,30,0.15); /* subtle translucent dark overlay */
  border-radius: 12px;
}


.hero-content p { font-size: 1.3rem; color: #333; }
/*.hero-content .cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: #c59b5a;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.hero-content .cta-button:hover { background: #b28a50; }*/

.hero-content .cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #fff;

  /* GOLD GRADIENT */
  background: linear-gradient(135deg, #c59b5a 0%, #e0c37f 100%);
  
  /* soft shadow for luxury lift */
  box-shadow: 0 6px 15px rgba(0,0,0,0.3), 0 0 15px rgba(197,155,90,0.25);
  
  /* smooth hover */
  transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
  background: linear-gradient(135deg, #b28a50 0%, #d6b16e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35), 0 0 20px rgba(197,155,90,0.35);
}





/* PARALLAX */
.parallax { position: relative; background-attachment: fixed; background-size: cover; background-position: center; }

/* SECTION */
.section { padding: 6rem 1rem 4rem 1rem; max-width: 1200px; margin: 0 auto; }
.section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #c59b5a; margin-bottom: 2rem; text-align: center; }
.section p { font-size: 1.1rem; margin-bottom: 1.2rem; color: #444; max-width: 850px; margin-left: auto; margin-right: auto; }

/* ABOUT YANA SECTION BACKGROUND WITH GRADIENT TRANSITION */
#about {
  background: linear-gradient(to bottom, #f5f3ed 0%, #f7f5ee 100%);  /* soft fade into offerings */
  padding-top: 6rem;    /* keep luxury vertical spacing */
  padding-bottom: 6rem; /* ensure smooth spacing for content */
}




/* OFFERINGS */
.offerings { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.offering-card {
  background: #fff; border-radius: 12px; padding: 2rem; text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: 0.3s;
}
.offering-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.offering-card h3 { color: #c59b5a; font-family: 'Playfair Display', serif; margin-bottom: 1rem; font-size: 1.5rem; }
.offering-card p { font-size: 1rem; color: #555; }
/*
#offerings {
  background: linear-gradient(to bottom, #f9f7f2, #f7f5ee);
}*/
/*
#offerings {
  background: linear-gradient(to bottom, #f9f7f2 0%, #f7f5ee 100%);
  padding-top: 4rem;    /* top padding to reveal gradient /
  padding-bottom: 4rem; /* bottom padding to reveal gradient /
}

#offerings .offerings {
  background: transparent;  /* keep transparent so gradient shows /
  padding-top: 2rem;        /* padding inside the grid /
  padding-bottom: 2rem;
  margin: 0 auto;           /* center the grid /
  gap: 2rem;
}
.offering-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* float over gradient /
  transition: 0.3s;
}
*/

#offerings {
  background: linear-gradient(to bottom, #f9f7f2 0%, #f7f5ee 100%);
  padding-top: 6rem;    /* more space so gradient is visible above cards */
  padding-bottom: 6rem; /* more space so gradient is visible below cards */
}

#offerings .offerings {
  background: transparent;  /* do not cover the gradient */
  padding: 0;               /* remove inner padding so cards float nicely */
  margin: 0 auto;
  gap: 2rem;
}

/* Give the cards a subtle “floating” effect */
.offering-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
  margin-top: 1rem;  /* push slightly down so gradient above shows */
  margin-bottom: 1rem; /* push slightly up so gradient below shows */
}







/* SOCIAL EMBEDS */
.social-section { padding: 4rem 1rem; background: #f2efe8; text-align: center; }
.social-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #c59b5a; margin-bottom: 2rem; }
.social-embeds { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.social-embeds iframe { border-radius: 12px; overflow: hidden; width: 320px; height: 440px; }

/* ===============================
   LUXURY POPUP FORM
   =============================== */
.popup-form {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}
.popup-form.active { display: flex; }

.form-content {
  background: #1e1e1e;
  border-radius: 18px;
  padding: 3rem 2.5rem;
  width: 90%;
  max-width: 520px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.popup-form.active .form-content { opacity: 1; transform: scale(1) translateY(0); }

.form-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, #c59b5a 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.form-content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.2rem;
  cursor: pointer;
  color: #c59b5a;
  transition: 0.3s;
}
.form-content .close:hover { color: #b28a50; }

.form-content h3 {
  font-family: 'Playfair Display', serif;
  color: #c59b5a;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-field { position: relative; margin-bottom: 1.8rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  background: #2c2c2c;
  border: 2px solid #c59b5a;
  border-radius: 12px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: 0.3s;
}
.form-field textarea { resize: none; }

.form-field label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #c59b5a;
  pointer-events: none;
  font-size: 0.95rem;
  transition: 0.3s;
  background: #2c2c2c;
  padding: 0 0.25rem;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.5rem;
  font-size: 0.8rem;
  background: #1e1e1e;
}

.form-content .cta-button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 0;
  background: linear-gradient(135deg, #c59b5a, #e0c38b);
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.form-content .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197,155,90,0.35);
}

.popup-success {
  display: none;
  text-align: center;
  padding: 40px 10px 20px;
}
.popup-success h3 { color: #c59b5a; margin-bottom:10px; }
.popup-success p { color: #ccc; }

/* RESPONSIVE HERO & POPUP */
@media(max-width:768px){
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  .hero { background: url('images/hero-mobile.jpg') center/cover no-repeat; }
}

@media(max-width:480px){
  /* HERO TEXT SIZES */
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  
  /* MOBILE: reduce gap between hero and next sections */
#about,
#offerings {
  margin-top: -30px;  /* pulls sections up closer to hero */
  padding-top: 1.2rem; /* keeps breathing room */
}
  

  /* MOBILE LUXURY POPUP FIXES */
  .popup-form {
    align-items: flex-start;
    padding-top: 70px; /* extra luxury top space so heading & X never overlap */
    padding-bottom: 40px;
    overflow-y: auto;
  }

  .form-content {
    padding: 32px 20px 32px;
    width: 95%;
    max-width: 480px;
    box-sizing: border-box;
  }

  /* Heading spacing */
  .form-content h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 22px;
    line-height: 1.3;
  }

  /* Close button higher & slightly smaller */
  .form-content .close {
    top: 0.1rem;
    right: 0.5rem;
    font-size: 1.9rem;
  }

  /* ALL INPUTS + TEXTAREAS + DATETIME FIELDS SAME WIDTH + HEIGHT */
.form-field input,
.form-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 1rem 0.75rem;    /* same padding for luxury floating label */
    background: #2c2c2c;
    border: 2px solid #c59b5a;
    border-radius: 12px;
    color: #fff;
    outline: none;
    height: 48px;             /* match luxury height */
    line-height: 1.4;
}



.form-field input[type="datetime-local"] {
    width: 100% !important;
    max-width: 100%;
    padding: 1rem 0.75rem;    
    font-size: 1rem;
    background: #2c2c2c;
    border: 2px solid #c59b5a;
    border-radius: 12px;
    color: #fff;
    box-sizing: border-box;
    height: 48px;             /* same height as other inputs */
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Hide native calendar icon (macOS-safe) */
.form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

/* Custom gold calendar icon */
.form-field input[type="datetime-local"]::after {
    content: "📅";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
    color: #c59b5a;
}



/* Floating label for all inputs including datetime-local */
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field input[type="datetime-local"]:focus + label,
.form-field input[type="datetime-local"]:not(:placeholder-shown) + label {
    top: -0.6rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: #1e1e1e;
    padding: 0 0.25rem;
}

/* Optional: shrink native calendar icon for luxury look /
.form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    transform: scale(0.9);
}*/


  /* Reduce bottom margin for smaller screens */
  .form-field { margin-bottom: 1.5rem; }
}
/* MOBILE: make Message / Notes field taller */
@media(max-width:480px){
  .form-field textarea#message {
    min-height: 8rem;   /* roughly 4 lines tall */
    padding: 1rem 0.75rem; /* consistent with other fields */
    line-height: 1.4;
  }
}
/* MOBILE: FORCE AUTOFILL FIELDS TO MATCH DARK LUXURY STYLE */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #2c2c2c inset !important; /* dark grey background */
  -webkit-text-fill-color: #fff !important; /* white text */
  caret-color: #fff; /* cursor color */
  transition: background-color 5000s ease-in-out 0s; /* prevent flash of yellow */
}

/* Firefox */
input:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px #2c2c2c inset !important;
  -moz-text-fill-color: #fff !important;
}

