/*
Theme Name: Aesthetic Static Theme
Theme URI: #
Author: AI Assistant
Author URI: #
Description: A static-like theme based on provided design images.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aesthetic-static
*/

/******************************************
 * 1. Global Styles & Typography
 ******************************************/

:root {
  --color-text-light: #ffffff;
  --color-text-dark: #333333;
  --color-accent-gold: #ffffff; /* Soft gold/tan accent color */
  --color-bg-dark: #000000;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  /* Remove background-color here if you want the beach image as the only background */
  /* background-color: var(--color-text-light); */
  overflow-x: hidden;

  /* 💥 ADD THESE LINES TO THE BODY 💥 */
  background-image: url("images/beach.jpg"); /* Your main background image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* This makes it stay in place */
  min-height: 100vh; /* Ensures body is at least full height for the background */
  /* ---------------------------------- */
}

h1,
h2,
h3,
h4,
.main-title,
.form-title,
.card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  /*text-transform: uppercase;*/
  letter-spacing: 2px;
}

.text-accent {
  color: var(--color-accent-gold);
}
.text-light {
  color: var(--color-text-light);
}
.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/******************************************
 * 2. Header & Navigation
 ******************************************/

.site-header {
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
background-color: rgba(237, 251, 255, 0.45);
}

.site-branding {
  flex-grow: 1; /* Pushes the nav to the center visually */
}

.logo-ornament {
  display: inline-block;
  width: 150px;
  height: 40px;
}

/* Navigation Styling */
.main-navigation {
  flex-grow: 1;
  text-align: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block; /* Center the list items container */
}

.nav-list li {
  display: inline-block;
  margin: 0 15px;
}

.nav-list a {
  color: var(--color-text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #595959;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  font-weight: bold;  
}


.nav-list a:hover {
  border-bottom: 1px solid var(--color-accent-gold);
}

/******************************************
 * 3. Hero & Full-Screen Sections
 ******************************************/

.full-screen-section {
  min-height: 80vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2; /* Ensures content is above the fixed background */
}

.beach-background {
  /* Ensuring it covers the section properly */
  width: 100%;
  height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle light overlay to make text readable */
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.main-title {
  font-size: 2em;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: var(--color-accent-gold);
}

.subtitle {
  font-size: 1.2em;
  font-weight: 350;
  margin-bottom: 20px;
  color:rgba(255, 255, 255, 255) ;

}

/* Button Styling (Used in Aesthetic Evolution section) */
.btn-primary {
  display: inline-block;
  margin-left: 150px;
  padding: 12px 36px;

  /* Typography */
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;

  /* Brand colors */
  background-color: #781F01;   /* Solid accent */
  color: #ffffff;
  border: 1.5px solid #7B3F00;

  /* Visual refinement */
  text-decoration: none;
  border-radius: 2px;

  /* Interaction */
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5e2f00;   /* Slightly darker */
  border-color: #5e2f00;
  color: #ffffff;
}

.btn-social {
  display: inline-block;
  padding: 12px 36px;

  /* Typography */
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;

  /* Brand colors */
  background-color: #406FB3;   /* Solid accent */
  color: #ffffff;
  border: 1.5px solid #8CBCFF;

  /* Visual refinement */
  text-decoration: none;
  border-radius: 2px;

  /* Interaction */
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-social:hover,
.btn-social:focus {
  background-color: #1C3D6B;   /* Slightly darker */
  border-color: #FFFFFF;
  color: #ffffff;
}


/******************************************
 * 4. Dark Section (Inner Glow)
 ******************************************/

.dark-section {
  background-color: #385A7D;
  min-height: 50vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-title {
  font-size: 3em;
  line-height: 1.2;
  color: var(--color-text-light);
}

/******************************************
 * 5. Service Cards (Radiant Self)
 ******************************************/

.light-section {
  background-color: var(--color-text-light);
  padding: 80px 0;
}

.sub-section-title {
  font-size: 1.5em;
  color: var(--color-text-dark);
  margin-bottom: 60px;
}

.card-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.service-card {
  flex-basis: 30%;
  padding: 30px;
  border: 1px solid #eee;
  text-align: center;
  background-color: var(--color-bg-dark); /* Card backgrounds are dark */
  color: var(--color-text-light);
}

.card-description {
  font-size: 0.9em;
  color: #ccc;
  height: 60px; /* fixed height for alignment */
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.8em;
  color: var(--color-accent-gold);
  line-height: 1.2;
  margin: 10px 0;
}

.card-price {
  font-size: 1.5em;
  color: var(--color-text-light);
  margin-top: 20px;
}

/******************************************
 * 6. Contact Form (Image 1)
 ******************************************/

.form-content {
  padding-top: 15vh; /* Push content down to avoid covering the model on the beach */
  max-width: 700px;
}

.form-title {
  font-size: 3em;
  margin-bottom: 5px;
}

.form-subtitle {
  margin-bottom: 20px;
}

.form-divider {
  width: 250px;
  height: 1px;
  background-color: var(--color-accent-gold);
  margin: 10px auto 40px auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #ddd;
  padding: 12px;
  color: var(--color-text-dark);
  flex: 1;
  font-family: var(--font-sans);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form textarea {
  width: 100%;
  flex: 1 0 100%;
  resize: vertical;
}

.btn-secondary {
  display: inline-block;
  width: 150px;
  padding: 10px 0;
  margin: 20px auto 0 auto;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-text-light);
  background-color: var(--color-accent-gold);
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #a09176;
}

/******************************************
 * 7. Footer
 ******************************************/

.site-footer {
  background-color: #385A7D;
  color: var(--color-text-light);
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
}

.footer-copyright p {
  margin: 0;
  color: #888;
}

.footer-social .social-icon {
  display: inline-block;
  color: var(--color-text-light);
  margin-left: 15px;
  font-size: 1.1em;
  border: 1px solid var(--color-text-light);
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}
/******************************************
 * 8. Treatments Page Styles
 ******************************************/

.treatments-page .minimal-hero {
  min-height: 50vh;
  align-items: flex-start;
}

.treatments-page .light-overlay {
  background-color: rgba(
    189,
    189,
    189,
    0.4
  ); /* Slightly heavier overlay for better readability */
  /* background: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;  */
}

.treatment-section {
  position: relative;
  /* Ensure a minimum height but let content determine the actual height */
  min-height: 80vh;
  z-index: 5; /* Keep content above the fixed background */
  padding: 120px 0;
}

.content-overlay-container {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 10;
  /* Ensure content is readable against the background */
  background-color: rgba(
    255,
    255,
    255,
    0.215
  );
  /* background: transparent; */
  padding: 40px;
  width: 100%;
  max-width: 1200px;
}

.content-left {
  flex: 1;
  padding-right: 20px;
}

.content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-image-container {
  position: relative;
  padding: 0;
  /* This positioning helps the image overlap slightly, matching the design */
  margin: 40px 0;
}

.treatment-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.treatment-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: -20px;
  text-transform: none;   /* 👈 this fixes ALL CAPS */
}


.treatment-subtitle {
  font-size: 1.2em;
  /*text-transform: capitalize;*/
  /* margin-bottom: 20px; */
}

.treatment-subtitle-large {
  font-size: 2em;
  /*text-transform: uppercase;*/
  color: var(--color-accent-gold);
  margin: 10px 0 30px;
}

.treatment-subhead {
  font-size: 1.1em;
  color: var(--color-accent-gold);
  /*text-transform: uppercase;*/
  margin-top: 30px;
  margin-bottom: 5px;
}

/* Reversed Layout for alternating design */
.reverse-layout .content-overlay-container {
  flex-direction: row-reverse;
}

/* Button position specific to Mesotherapy section */
.get-started-btn {
  margin-top: 20px;
  align-self: flex-start;
}
/******************************************
 * 9. Skincare Page Styles
 ******************************************/

.skincare-page .skincare-header {
  min-height: 30vh;
  align-items: center;
}

.product-section {
  position: relative;
  z-index: 5;
  padding: 70px 0;
}

.product-detail-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  background-color: rgba(
    255,
    255,
    255,
    0.215
  ); /* Changed to light, semi-transparent white */
  padding: 40px;
  margin: 40px auto;
  border-radius: 12px;
}

.product-image-container {
  flex: 1; /* Allow image container to grow proportionally 
  /* height: 400px; Removed fixed height */
  display: flex;
  gap: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.product-image {
  max-width: 100%;
  height: auto;
  /*margin-bottom: 1000px;*/
  border-radius: 12px;

  /* Optional: Slight 3D effect shown in image */
  /* transform: rotateY(-5deg); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.product-content {
  flex: 1;
  margin-left: 100px;
}

.product-detail-grid .product-content.text-light {
  color: var(
    --color-text-dark
  ); /* Change text to dark for readability on light background */
}

.product-title {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: -15px;
    text-transform: none;   /* 👈 this fixes ALL CAPS */

}

.product-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.product-content ul {
  list-style: none;
  padding-left: 0;
}

.product-content ul li {
  font-size: 1em;
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
}

/* Reversed Layout */
.reverse-product-layout .product-detail-grid {
  flex-direction: row-reverse;
}

/* Sub-menu Styling */
.main-navigation ul li.menu-item-has-children {
  position: relative;
}

/* ===== Dropdown Menu Styling ===== */
.main-navigation ul li.menu-item-has-children {
  position: relative;
}

.main-navigation ul li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.374); /* Light transparent background */
  backdrop-filter: blur(6px); /* Soft blur effect */
  list-style: none;
  margin: 10px 0 0;
  padding: 8px 0;
  min-width: 220px;
  border: 1px solid rgba(255, 215, 0, 0.3); /* subtle gold border */
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

/* Sub-menu item styling */
.main-navigation ul li.menu-item-has-children .sub-menu li {
  display: block;
}

.main-navigation ul li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 12px 18px;
  color: var(--color-text-dark, #333);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}

/* Hover effect for links */
.main-navigation ul li.menu-item-has-children .sub-menu li a:hover {
  background: rgba(92, 94, 95, 0.15);
  color: var(--color-accent-gold, #009bb694);
  padding-left: 22px; /* slight shift for visual feedback */
}

/* Show dropdown on click */
.main-navigation ul li.menu-item-has-children.dropdown-active > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Optional arrow for menu items with children */
.main-navigation ul li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.8em;
  color: var(#99cde78a);
}

/* Responsive adjustments for product sections */
@media (max-width: 768px) {
  .product-detail-grid {
    flex-direction: column;
    gap: 20px;
  }

  .product-image-container,
  .product-content {
    flex: none;
    width: 100%;
  }

  .product-image-container {
    margin-bottom: 20px;
  }

  .reverse-product-layout .product-detail-grid {
    flex-direction: column; /* Ensure it stacks even when reversed */
  }
}

.main-navigation .scrollable-dropdown .sub-menu {
  max-height: 240px; /* 5 items * 48px per item */
  overflow-y: auto;
}

/******************************************
 * 10. Logo Customization
 ******************************************/

.logo-ornament img {
  /* border-radius: 100%; */
  /* object-fit: cover; */
  width: 170%;
  height: 100%;
}

.site-footer .logo-ornament {
  width: 150px;
  height: 40px;
}

.success-message {
  color: #2ecc71;
  margin-bottom: 15px;
}
.error-message {
  color: #e74c3c;
  margin-bottom: 15px;
}



