/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /** Colors */
  --chinese-violet: hsl(304, 14%, 46%);
  --old-rose: hsl(357, 37%, 62%);
  --old-rose-alpha: hsla(357, 37%, 62%, 0.3);
  --charcoal: hsl(203, 30%, 26%);
  --seashell: hsl(7, 87%, 94%);
  --white: hsl(44, 89%, 93%);
  --light-gray: hsl(0, 0%, 95%);
  --sonic-silver: hsl(208, 7%, 46%);
  
  --gradient-text: linear-gradient(90deg, #ff8a00, #e52e71);
  --shadow-1: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-2: 0 2px 5px rgba(0, 0, 0, 0.05);

  /** Typography */
  --ff-philosopher: 'Philosopher', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;
  
  --fs-1: 3.5rem;
  --fs-2: 2.5rem;
  --fs-3: 2rem;
  --fs-body: 1.6rem;

  --fw-500: 500;
  --fw-700: 700;

  /** Spacing */
  --section-padding: 60px;
  --radius-10: 10px;
  --transition: 0.25s ease;
}

/*-----------------------------------*\
  #RESET & GLOBAL
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--ff-poppins);
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: var(--fs-body);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
li { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { width: 100%; font: inherit; }

.container {
  padding-inline: 15px;
  margin-inline: auto;
  max-width: 1200px;
}

.section { padding-block: var(--section-padding); }
.section:nth-child(even) { background-color: var(--seashell); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }

/* Typography Helpers */
.h1, .h2, .h3 {
  color: var(--charcoal);
  font-family: var(--ff-philosopher);
  font-weight: var(--fw-700);
  line-height: 1.2;
}
.h1 { font-size: var(--fs-1); margin-bottom: 20px; }
.h2 { font-size: var(--fs-2); }
.h3 { font-size: var(--fs-3); }

.section-subtitle {
  color: var(--old-rose);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-700);
  margin-bottom: 10px;
  text-align: center;
}

.section-title { margin-bottom: 30px; text-align: center; }

/* Decoration */
.has-underline {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.has-underline .span {
  display: block;
  height: 3px;
  background-color: var(--old-rose-alpha);
  width: 100px;
  margin: 15px auto 0;
  position: relative;
}

/* Button Standard */
.btn-primary {
  background-color: var(--old-rose);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: var(--fw-500);
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--chinese-violet);
  transform: translateY(-2px);
}

.img-cover { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-10); }

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  background-color: var(--white);
  padding-block: 15px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--ff-philosopher);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--charcoal);
}

/* Mobile Nav */
.nav-toggle-btn { font-size: 3rem; color: var(--charcoal); }
.nav-toggle-btn .close { display: none; }
.nav-toggle-btn.active .open { display: none; }
.nav-toggle-btn.active .close { display: block; }

.navbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-1);
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.navbar.active { max-height: 300px; }

.navbar-list { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.navbar-link { color: var(--charcoal); font-weight: 500; transition: var(--transition); }
.navbar-link:hover { color: var(--old-rose); }

/* Desktop Nav */
@media (min-width: 992px) {
  .nav-toggle-btn { display: none; }
  .navbar {
    position: static;
    max-height: none;
    box-shadow: none;
    width: auto;
    background: transparent;
  }
  .navbar-list {
    flex-direction: row;
    padding: 0;
    gap: 30px;
  }
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .container {
  display: grid;
  gap: 30px;
}

.hero-banner {
  max-width: 500px;
  margin-inline: auto;
  position: relative;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: -10px; bottom: -10px;
  background-color: var(--old-rose-alpha);
  border-radius: var(--radius-10);
  z-index: -1;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }
  .hero .section-subtitle, .hero .section-title { text-align: left; }
}

/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.image-gallery figure {
  flex: 1 1 150px;
  max-width: 250px;
  border-radius: var(--radius-10);
  overflow: hidden;
  transition: transform 0.3s;
}
.image-gallery figure:hover { transform: scale(1.05); }

/*-----------------------------------*\
  #LOCATION
\*-----------------------------------*/
.author .container { display: grid; gap: 40px; }
.author-content {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-1);
  position: relative;
}
.abs-img { position: absolute; top: -20px; right: 20px; border-radius: 50%; border: 3px solid var(--white); }

@media (min-width: 992px) {
  .author .container { grid-template-columns: 1fr 1fr; align-items: center; }
}

/*-----------------------------------*\
  #BENEFITS & PRODUCTS GRID
\*-----------------------------------*/

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
}

.benefits-card, .achievement-card {
  background: var(--white);
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-2);
  padding: 20px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefits-card:hover, .achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1);
}

.card-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.card-title { margin-bottom: 10px; text-transform: uppercase; font-size: 1.8rem; }
.card-text { margin-bottom: 20px; flex-grow: 1; color: #555; }

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--old-rose);
  font-weight: 600;
  margin-top: auto;
}

/* Specific Product Card Styling */
.achievement-card { padding: 0; overflow: hidden; }
.achievement-card .card-content { padding: 20px; }
.achievement-card .img-holder {
  height: 200px;
  width: 100%;
  background: var(--light-gray);
}

/*-----------------------------------*\
  #CONTACT & COMMENTS AREA
\*-----------------------------------*/

.wrapper {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .wrapper { grid-template-columns: 3fr 2fr; }
}

/* Comments Box */
.custom-feedback-area {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-1);
}

/* Emoji */
.emoji-container { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
.emoji {
  font-size: 2.5rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
  user-select: none;
}
.emoji:hover { transform: scale(1.2); }
.like-count { font-size: 1.2rem; color: #777; margin-top: 5px; }

/* Form */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--old-rose);
  outline: none;
  background: #fff;
}

/* Comment List */
.comment-list {
  margin-top: 30px;
  max-height: 400px;
  overflow-y: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.comment-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid var(--old-rose);
}
.comment-header { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; color: var(--charcoal); }
.comment-time { font-size: 1.2rem; color: #999; margin-top: 5px; text-align: right; }

/* Contact Card */
.contact-card {
  background: var(--seashell);
  padding: 30px;
  border-radius: 15px;
}
.contact-card li { margin-bottom: 25px; }
.card-title { font-weight: bold; margin-bottom: 5px; color: var(--old-rose); }
.social-list { display: flex; gap: 10px; margin-top: 10px; }
.social-link {
  font-size: 2.4rem;
  color: var(--charcoal);
  transition: 0.3s;
}
.social-link:hover { color: var(--old-rose); }

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding-block: 40px;
  text-align: center;
}
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 20px; }
.footer .logo { color: var(--white); font-size: 2.8rem; }
.footer-bottom { font-size: 1.4rem; opacity: 0.8; }
  p {     
      
      text-transform:capitalize;
      font-weight: bold;
      background: linear-gradient(90deg, #00a2ff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7), 
                   -4px -4px 10px rgba(255, 255, 255, 0.3);
      animation: glow 2s infinite alternate;
    }
  
    h1 {     
      text-align: center;
      text-transform:capitalize;
      font-weight: bold;
      letter-spacing: 6px;
      background: linear-gradient(90deg, #ff8a00, #e52e71);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7), 
                   -4px -4px 10px rgba(255, 255, 255, 0.3);
      animation: glow 2s infinite alternate;
    }

    h2 {
      text-align: center;
      text-transform:capitalize;
      font-weight: bold;
      letter-spacing: 6px;
      background: linear-gradient(90deg, #ff8a00, #e52e71);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7), 
                   -4px -4px 10px rgba(255, 255, 255, 0.3);
      animation: glow 2s infinite alternate;
    }
