/* General reset */
body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    color: white;
}

/* Navigation bar container */
#Hero-Nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #0c0c0c6e;
    position: fixed;
    top: 75px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

/* Hero Text Section */
#Hero-Text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 120px;
    text-align: left;
    max-width: 1500px;
    align-content: center;
}

#Hero-Text h1 {
    font-size: clamp(60px, 10vw, 120px);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, orange, purple, limegreen, brown, red, white, black, orange), var(--glow);
    background-size: 400%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: colorShift 10s linear infinite;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    white-space: nowrap;
    width: auto;
    display: block;
}

#Hero-Text h3 {
    display: block;
    width: 100%;
    font-size: 40px;
    margin-top: 15px;
    text-align: left;
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.2);
}

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Left side (logo) */
.nav-left h1,
h1 {
    font-size: 50px;
}

/* Right side (icons) */
.nav-right {
    display: flex;
    gap: 75px;
}

.nav-right img {
    width: 85px;
    cursor: pointer;
}

/* Headings and button */
body > h1,
body > h3,
#Hero-Button {
    margin-top: 150px;
    text-align: center;
}

/* Optional: Add some glow for visibility on dark backgrounds */
h1,
h3 {
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.2);
}

/* BUTTON BELOW HERO TEXT */
#Hero-Button {
    border-radius: 8px;
    margin-top: -750px;
}

#Hero-Button h2 {
    background: linear-gradient(135deg, #ff7518, #6a00ff);
    color: #fff;
    display: inline-block;
    padding: 20px 130px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #ff7518;
    text-shadow: 0 0 8px rgba(255, 117, 24, 0.6);
}

#Hero-Button h2:hover {
    background: linear-gradient(135deg, #ff9a3d, #8a33ff);
    transform: scale(1.55);
    -ms-transform-origin-y: 10%;
    box-shadow: 0 0 20px rgba(255, 117, 24, 0.7);
}

/* Fullscreen overlay menu */
.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #000000 0%, #000000 85%);
    z-index: 3000;
    box-shadow: inset 0 0 80px rgba(255, 80, 0, 0.3);
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.menu.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: pulseGlow 3s infinite ease-in-out;
}

.menu a {
    color: white;
    font-size: 4rem;
    text-decoration: none;
    margin: 20px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 2px;
}

.menu a:hover {
    color: #ff6600;
    text-shadow: 0 0 15px #ff3300;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: inset 0 0 80px rgba(89, 10, 117, 0.867); }
    50% { box-shadow: inset 0 0 120px rgba(245, 149, 40, 0.985); }
}

/* Close (X) button */
.close-btn {
    position: absolute;
    top: 115px;
    left: 100px;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 2;
}

/* Shopping cart icon */
.shopping-icon {
    position: absolute;
    top: 105px;
    right: 120px;
    width: 105px;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.shopping-icon:hover {
    transform: scale(1.2);
}

/* Title styling: centered at the top, between close and cart */
.menu-title {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

/* Make links stack vertically and centered */
.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Social icons at bottom of menu */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: brightness(1) invert(0);
}

/* === CALM SCROLL DOWN === */
.scroll-down {
    display: flex;
    position: relative;
    top: -100px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.7rem;
    color: #ccc;
    animation: calmPulse 3s ease-in-out infinite;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05ch;
    font-weight: 300;
}

.scroll-down .arrow {
    font-size: 1rem;
    animation: calmBounce 2s ease-in-out infinite;
}

@keyframes calmPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes calmBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(3px); }
}

/* Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 50px;
    height: 500px;
}

.review-card {
    background-color: #2a2a2a;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    transition: transform 0.4s ease, background-color 0.4s ease;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
}

.reviews-header h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 65px;
}

/* Hover Effects */
.review-card:hover {
    background-color: rgb(255, 255, 255);
    transform: rotate(3deg);
    color: black;
}

/* Scroll Fade Animation */
.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Initial state: hidden */
.scroll-animate,
.review-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* State when visible */
.scroll-animate.show,
.review-card.show {
    opacity: 1;
    transform: translateY(0);
}

#My-Story {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.story-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
}

.story-text {
  flex: 1;
  max-width: 450px;
}

.story-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #ffffff;
  max-width: 90%;
}

.story-details {
  color: #ffffff;
  font-size: 1rem;
}

.story-text .hidden-text {
  display: block;
  margin-top: 12px;
  color: #e89b44;
  font-size: 1rem;
  line-height: 1.7;
}

#Story-Button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition:  0.3s ease;
}

#Story-Button:hover {
  background-color: #e96513;
}

#Contact-Hero > h3{
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.story-image img{
  flex: 1;
  display: flex;              /* enable flexbox */
  justify-content: flex-end;    /* centers image horizontally */
  align-items: center;  
  padding-top: 100px;
  padding-left: 100px;      /* centers image vertically */
}

.story-image img {
  width: 70%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-section {
  background-color: #000000;
  padding: 2rem;
  text-align: center;
  height: 40vh;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-container{
  justify-content: center;
  align-items: center;
  padding-top: 300px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #fffefe;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.contact-form input[type="email"] {
  padding: 0.75rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form input[type="submit"] {
  padding: 0.75rem;
  background-color: #6f4e37;
  color: white;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form input[type="submit"]:hover {
  background-color: #8b5e3c;
}

.Service-Section {
  background-color: #000000;
  padding: 500px 10% 200px 0;
  color: white;
  height: 50vh;
}


.service-header {
  display: flex;
  justify-content: center; /* centers the h2 horizontally */
  margin-bottom: 40px;
}

.service-header h2 {
  font-size: 1.8rem;    /* controls text size */
  font-weight: 700;     /* adjust boldness */
  max-width: 600px;     /* controls width of text block */
  line-height: 1.4;     /* improves readability */
  text-align: center;   /* centers the text inside the h2 itself */
  margin: 0 auto;       /* ensures the block stays centered */
}

.service-grid {
  display: flex;
  justify-content: center;   /* centers the 3 boxes horizontally */
  align-items: stretch;      /* makes them equal height */
  gap: 60px;                 /* space between boxes */
  flex-wrap: wrap;           /* allows wrapping on smaller screens */
  margin-top: 40px;
}

.service-grid div {
  width: 20%;                /* each box takes up 20% of the width */
  height: 300px;              /* auto height based on content */
  background-color: #f7f7f7; /* light background for contrast */
  border-radius: 12px;       /* rounded corners */
  padding: 40px 20px;        /* internal spacing */
  text-align: center;        /* center text inside */
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease; /* smooth hover animation */
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* soft shadow */
}

.service-grid div:hover {
  transform: scale(1.08);       /* slightly enlarges on hover */
  background-color: #fff;       /* optional hover brightness */
  box-shadow: 0 4px 14px rgba(0,0,0,0.1); /* stronger hover shadow */
}


    .footer {
      background-color: #000;
      padding: 20px 0;
      text-align: center;
      border-top: 1px solid #333;
    }

    .footer-nav a {
      display: block;
      padding: 10px 0;
      text-decoration: none;
      color: #ccc;
      text-transform: uppercase;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-nav a:hover {
      color: #e67e22;
    }

    .footer-social {
      margin: 20px 0;
    }

    .footer-social a {
      margin: 0 10px;
      color: #ccc;
      font-size: 24px;
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #e67e22;
    }

    .footer-copyright {
      padding-top: 10px;
      border-top: 1px solid #333;
      font-size: 12px;
    }

    .footer-copyright a {
      color: #ccc;
      text-decoration: none;
      margin-left: 5px;
    }

    .footer-copyright a:hover {
      color: #e67e22;
    }

    @media (max-width: 414px) {
      .footer-nav a {
        font-size: 12px;
        padding: 8px 0;
      }

      .footer-social a {
        font-size: 20px;
      }

      .footer-copyright {
        font-size: 10px;
      }
    }