
/* ========== BASE STYLES ========== */
body {
  margin: 0;
  font-family: 'Rockwell', sans-serif;
  background-color: #fff7f0;
  color: #b35400;
    overflow-x: hidden; 
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  text-align: center;
  margin: 0;
}

h1 { font-size: 2.5rem; }
h2 {
  font-size: 2rem;
  border-bottom: 2px solid #dd6b20;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
h3 { font-size: 1.25rem; margin-bottom: 0; }
h4 { font-size: 1.5rem; margin-bottom: 0.3rem; }
h5 { font-size: 1rem; margin-top: 0.5rem; }

/* ========== HEADER & LOGO ========== */
header {
  background-color: #ebe3d9;
  padding: 1rem;
  text-align: center;
}

.logo {
  max-height: 300px;
  width: auto;
  display: block;
  margin: 0 auto 1rem;
}

/* ========== NAVIGATION ========== */
nav {
  position: relative;
}

#navMenu {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#navMenu li a {
  text-decoration: none;
  color: #fff;
  background-color: #dd6b20;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease;
}

#navMenu li a:hover,
.tab-link.active {
  background-color: #c05621;
}

/* ========== HAMBURGER MENU FOR MOBILE ========== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  margin: 0 auto;
}

.hamburger span {
  height: 4px;
  background: #dd6b20;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .hamburger { display: flex; }
  #navMenu {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }
  #navMenu.show { display: flex; }
  #navMenu li { width: 100%; margin: 0.5rem 0; }
  #navMenu li a {
    all: unset;
    text-decoration: none;
    color: #fff;
    background-color: #dd6b20;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    text-align: center;
  }
}

/* ========== CONTENT ========== */
main section {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

.content-gradient {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #ff3f6c, #ff77a9, #ff9f43, #ffd93b);
  color: white;
  padding: 2rem;
  box-sizing: border-box;
}

.content-gradient h2, 
.content-gradient p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* ========== PANELS ========== */
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;

}

.pricing-panel {
  background-color: #fff7f0;
  color: #b35400;
  border: 2px solid #dd6b20;
  border-radius: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
    box-sizing: border-box;
  max-width: 100%;
}

.pricing-panel:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f0f8ff;
}

/* ========== SPLIT PANELS ========== */
.split-panel {
  display: flex;
  gap: 1rem;
  text-align: center;
}

.split-left, .split-right {
  flex: 1;
  background-color: #ffe8d6;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}


.split-panel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
.split-left-grid,
.split-right-grid {
  flex: 1 1 280px;
  min-width: 280px;
  text-align: center;
  align-items: center;
}

.info-link {
  color: #dd6b20;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1rem;
}

.info-link:hover {
  color: #c05621;
  text-decoration: none;
}


/* ========== FAQ ========== */
#faq {
  max-width: 900px;
  margin: 3rem auto;
  background-color: #fff7f0;
  color: #b35400;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #dd6b20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-category {
  margin-bottom: 2rem;
}

.faq-category h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #dd6b20;
}

.faq-category p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ========== TIPS SECTION ========== */
.tips-section {
  background-color: #fff8e1;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  color: #b35400;
  max-width: 700px;
  margin: 2rem auto;
  width: 100%;
  box-sizing: border-box;
}

/* ========== ABOUT PAGE ========== */
.about-image-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.about-image {
  width: 70%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========== UV TANNING PAGE ========== */
.uv-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.uv-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
}

.uv-row.reverse {
  flex-direction: row-reverse;
}

.uv-text, .uv-image {
  flex: 1 1 400px;
  min-width: 280px;
}

.uv-image {
  max-width: 400px;
  width: 90%;
}

/* ========== RED LIGHT THERAPY ========== */
.redlight-unit {
  text-align: center;
  padding: 2rem;
}

.redlight-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.redlight-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fae2ec;
}

.redlight-details {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  flex-wrap: wrap;
}

.redlight-left, .redlight-right {
  flex: 1 1 45%;
  max-width: 45%;
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 1000px;
}

.column {
  flex: 1 1 45%;
  min-width: 300px;
}

.redlight {
  text-align: center;
  margin-bottom: 20px;
}

.health-benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.benefit-column {
  flex: 1 1 45%;
  min-width: 280px;
}

.benefit-column h3 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefit-column ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
  text-align: left;
}

.benefit-column ul li {
  margin-bottom: 0.5rem;
}

.features-section {
  text-align: center;
  margin-bottom: 2rem;
}

.features-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  display: inline-block;
  text-align: left;
}

/* ========== SUNLESS TANNING PAGE ========== */
.sunless-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

.sunless-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fae2ec;
  text-align: center;
}

.sunless-details {
  display: flex;
  justify-content: space-between;

}  
  
.feature-benefit-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.feature-column {
  flex: 1 1 45%;
  min-width: 280px;
}

.feature-column h4 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-column ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
}

.feature-column ul li {
  margin-bottom: 0.5rem;
}
  
  
  /*-------------------------------------- CONTACT US PAGE ---------------------------------------------*/
/* Side-by-side layout for Hours & Location */
.info-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.info-box {
  background-color: #fff7f0;
  color: #b35400;
  border: 2px solid #dd6b20;
  border-radius: 1rem;
  padding: 1rem 2rem;
  flex: 1 1 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reuse contact form from earlier */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: #fff7f0;
  border: 2px solid #dd6b20;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #b35400;
  font-size: 1rem;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: 'Rockwell', sans-serif;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #dd6b20;
  color: white;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c05621;
}

.site-footer {
  background-color: #f4f4f4;
  padding: 20px;
  text-align: center;
}

.footer-icons a {
  font-size: 30px;
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.footer-icons a:hover {
  color: #0077ff;
}

.footer-text {
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

#about strong {
  color: #FFFFFF; 
  font-weight: bold; 
  font-size: 1.1em; /* Slightly larger text */
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* adds depth so white text is readable */
  border-bottom: 2px solid #dd6b20;
  padding-bottom: 0.1rem; ;
}

.center-button {
  text-align: center; /* Centers inline or inline-block elements */
  margin-top: 30px;   /* Optional spacing from content above */
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF8C00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #e67600;
}

#about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Makes the section take up most of the viewport */
  text-align: center;
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  /* Stack UV tanning rows */
  .uv-row {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
  }

  .uv-text, .uv-image {
    width: 100%;
    max-width: 100%;
  }

  /* Red Light Therapy layout fix */
  .redlight-left, .redlight-right {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Sunless Tanning layout */
  .sunless-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-column {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: left;
  }

  /* Pricing and Info Panels */
  .pricing-panel,
  .info-box,
  .tips-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .contact-form {
    width: 100%;
    padding: 1rem;
  }

  /* Navigation tweaks */
  #navMenu li {
    width: 100%;
    margin: 0.5rem 0;
  }

  #navMenu li a {
    font-size: 1.2rem;
  }

  /* Ensure body scroll remains smooth */
  body {
    padding: 0 1rem;
  }
}

