body,
html {
  body {
  margin: 0 auto;
  padding: 0;
  height:fit-content;
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-family: "Cormorant Garamond", serif;
  background-color: #f8f4ed;
}
body::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f8f4ed;
}

body::-webkit-scrollbar-thumb {
    background-color: #dea846bd;
    /* Oven Gold */
    border-radius: 20px;
}
}

.scroll-wrapper {
    width: 100%;
}

.container {
    margin: 0 auto;
    height:100vh;
}
.container{
  justify-content: center;
  margin: 0 auto;
}

/* --- Logo --- */
.logo-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: transparent;
    z-index: 10;
    justify-content: center;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(5px);
}

.logo-img:hover>img {
    width: 195px;
}

.img1 {
    left: 40%;
    top: 0%;
    margin: 0 auto;
    position: absolute;
    padding: 0px;
    width: 200px;
    transition: all 1s ease-in-out;
}

/* --- Background --- */
.background {
    z-index: -3;
    margin-left: 0rem;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(50%);
    border-radius: 2px;
    transition: opacity 0.4s ease-in-out;
}

.bg-img {
    margin: 0 auto;
    display: flex;
    flex-direction: rows;
    justify-content: center;
    width: 100vh;
    height: 100vh;
}
 .bg-img.fade-out {
            opacity: 0;
        }
               .background {
            width: 100%;
            height: 100vh; /* Example fixed height for the background area */
            position: relative; /* Needed for absolute positioning of image inside */
 /* Hide overflow if image doesn't perfectly fit */
            border-radius: 10px; /* From your original CSS */
            filter: brightness(50%); /* From your original CSS */
            /* The transition for opacity is crucial for the fade effect */
            transition: opacity 0.4s ease-in-out; /* Matches your original CSS transition duration */
        }

        .bg-img {
            width: 100%;
            height: 100vh;
            object-fit: cover; /* Ensures image covers the area */
            position: absolute; /* Positions the image absolutely within .background */
            top: 0;
            left: 0;
            border-radius: 10px; /* Apply border-radius to the image itself */
            opacity: 1; /* Start fully visible */
            transition: opacity 0.4s ease-in-out; /* Use this for the fade effect */
        }

/* --- Hover Text --- */
.hover {
    position: absolute;
    color: #f8f4ed;
    bottom: 35px;
    font-size: 2rem;
    z-index: 7;
    padding: 70px;
    transition: transform 0.6s, opacity 0.6s, font-size 0.6s;
}

.hover:hover {
    font-size: 1.9rem;
    transform: translateX(10px);
}

/* --- Fade Animations --- */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* --- Appear Animation --- */
.appear-text {
    padding-top: 70px;
    max-width: 400px;
    line-height: 4rem;
    margin: 0 auto;
    justify-self: center;
    text-align: center;
}

.appear {
    padding: 2rem;
    height: 400px;
    width: 600px;
    margin: 0 auto;
    padding-top: 3rem;
    justify-content: center;
    text-align: center;
    animation: slidein linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.appear.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slidein {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    50% {
        transform: translateY(50px);
        opacity: 0.5;
        clip-path: inset(0 0 0 0);
    }

    to {
        transform: translateY(100px);
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* --- Buttons --- */
.change-button {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #d9a441;
    border: 1px solid white;
    position: absolute;
    justify-content: center;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
    top: 50%;
    right: 0%;
    margin: 40px;
    transition: background-color 0.3s;
    z-index: 15;
}

.change-button:hover {
    background-color: #f8f4ed;
    width: 45px;
    height: 45px;
}

.change-button:hover>img {
    transform: translateX(10px);
}

.change-button>img {
    height: 30px;
    width: 30px;
    position: absolute;
    justify-self: center;
    top: 15%;
    transition: all 0.3s;
    left: 25%;
}

.button-small {
    background: transparent;
    color: #5c3a21;
    border: 2px solid #5c3a21;
    border-radius: 8px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.button-large {
    background-color: #d9a441;
    color: #5c3a21;
    border: none;
    border-radius: 8px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.button-large:hover {
    background-color: #803c3c;
    color: #f8f4ed;
}

.button-small:hover {
    background-color: #ffffff;
    color: #5C3A21;
}

/* --- Button Group --- */
.button-group {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0 auto;
    z-index: 17;
    grid-template-columns: 50% 50%;
    transition: background-color 1s;
}

/* --- Tag Line --- */
.tag-line {
    width: 100%;
    height: 100%;
    max-width: 750px;
    text-align: center;
    justify-self: center;
    top: 50%;
    margin: 0 auto;
    color: #f8f4ed;
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    transition: opacity 0.5s, transform 0.5s;
}

.tag-line:hover {
    transform: translateX(3px) translateY(3px);
}

/* --- Order Button --- */
.order-button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d9a441;
    color: #5c3a21;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    cursor: pointer;
    z-index: 15;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.order-button:hover {
    background-color: #803c3c;
    color: #f8f4ed;
    transform: translate(-50%, -52%);
}

/* --- Video --- */
.bg-img video {
    position: absolute;
    border-radius: 30px;
    object-fit: cover;
    border: 1px solid rgb(79, 40, 79);
    z-index: 4;
    height: 300px;
    width: 600px;
    margin-top: 230px;
    margin-left: 50px;
    margin-bottom: 30px;
    box-shadow: -8px 8px 24px #171717;
    transition: all 0.5s;
}

.bg-img>h2 {
    visibility: hidden;
    transition: opacity 1s;
    opacity: 0;
}

.bg-img:hover>h2 {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.bg-img:hover>video {
    opacity: 1;
    visibility: visible;
    height: 290px;
    width: 590px;
    z-index: 10;
}

/* --- Responsive Media Queries --- */
@media (max-width: 600px) {
    .button-group {
        padding: 10px;
        grid-template-columns: 50% 50%;
    }

    .bg-img video {
        width: 200px;
        padding-top: 180px;
    }
}

/* --- Order Follower --- */
#orderNowFollower {
    position: absolute;
    color: #5c3a21;
    font-size: 1.5em;
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    display: none;
    will-change: transform, opacity;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* --- Order Section --- */

.order-class{
    position: absolute;
    top: 108%;
    left: -2rem;
    margin: 0 auto;
    width: 100vh;
    display: grid;
    grid-template-columns: ;
}
.order {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    background-color: #d9a441;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
    z-index: 15;
}

.order:hover {
    border-color: #803c3c;
    background-color: #dca949;
}

.order p {
    color: #5c3a21;
    font-size: 1.5em;
    text-align: center;
    justify-self: center;
}

/* --- Gemini Button --- */
#generateIdeaBtn {
    background-color: #803c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#generateIdeaBtn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

#generateIdeaBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* --- Gemini Output --- */
#geminiOutput {
    margin: 0 auto;
    padding: 15px;
    width: 200px;
    height: 200px;
    max-width: 400px;
    background-color: #dca949;
    color: #ecf0f1;
    border-radius: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-style: italic;
    min-height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 5;
}

.order-class {
    margin: 0 auto;
    display: grid;
    height: 30rem;
    width: 100%;
}

#geminiOutput.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Text --- */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.1em;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .order-class {
        display: grid;
        grid-template-columns: 100%;
        /* Single column layout */
        margin-left: auto;
        margin-right: auto;
        width: 100vh;
        justify-content: center;
        height: 300px;
        text-align: center;
    }

    .order-class {
        margin: ;
        margin-left: ;
    
        height: 30rem;
        grid-template-columns: ;
    }

    .order {
        width: 200px;
        height: 200px;
        padding: 10px;
        margin: 0 auto;
        left: 80%;
        right: 20%;

        /* Center 
  } the order element */
    }

    #geminiOutput {
        width: 200px;
        height: 200px;
        padding: 10px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .order-class {
        display: grid;
        width: 100px;
        height: 100px;
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .order {
        width: 200px;
        height: 200px;
        padding: 10px;
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .order p {
        font-size: 1.2em;
    }

    #orderNowFollower {
        font-size: 1.2em;
    }

    #generateIdeaBtn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    #geminiOutput {
        padding: 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 0.9em;
    }

    .order p {
        font-size: 1em;
    }

    #orderNowFollower {
        font-size: 1em;
    }

    #generateIdeaBtn {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    #geminiOutput {
        padding: 8px;
        font-size: 0.8em;
    }

    .button-group {
        margin: 0 auto;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        display: grid;
    }

    .img1 {
        margin-top: 40px;
        left: 23%;
    }

    body {
        max-width: 500px;
    }

    .appear-text {
        padding-top: 20px;
        width: 300px;
        line-height: 2rem;
    }
}

.video-scrollbar {
    padding: 2rem;
    background-color: #f8f4ed;
    /* Creamy White */
    color: #5c3a21;
    /* Rustic Brown */
    text-align: center;
    margin-top: 25rem;
    z-index: 15;
    background-image: url("bg9.png");
    background-size: cover;
}

.video-scrollbar h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    background-color: #f5f5f357;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    position: relative;
    border-radius: 20%;
    animation: fadein 1s ease-in-out;
}

/* Shared styles for video and iframe */
.video-container iframe,
.video-container video {
    width: 215px;
    height: 360px;
    border-radius: 10px;
    flex-shrink: 0;
    z-index: 15;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.video-container iframe:hover,
.video-container video:hover {
    transform: scale(1.05);
    opacity: 1;
    animation: fadein 1s ease-in-out;
}

/* Custom Scrollbar */
.video-container::-webkit-scrollbar {
    height: 8px;
}

.video-container::-webkit-scrollbar-track {
    background: #f8f4ed;
}

.video-container::-webkit-scrollbar-thumb {
    background-color: #d9a441;
    /* Oven Gold */
    border-radius: 10px;
}

/* Optional smaller sizing class */
.small-video {
    width: 200px;
    height: 200px;
}

/* Optional fade-in animation */
@keyframes fadein {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.comments {
    background-color: #d9a441;
    color: #5c3a21;
    border-radius: 200px;
    width: 300px;
    height: 300px;
    box-shadow: #a6a18a 0px 0px 20px;
    position: relative;
    margin: auto;
    z-index: 12;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
}

.comm h2 {
    text-align: left;
    padding: 50px;
    padding-top: 120px;
    text-align: center;
    margin: 0 auto;
    color: #5c3a21;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.comm {
    padding: 250px;
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: #ededeb;
}
.comment  {
    padding-top: 80px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  text-align: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
}
.comment p {
   font-size: 1.2rem;
   font-style: italic;
   line-height: 25px;
   max-width: 180px;
   margin: 0 auto;
   text-align: center;
}
.customer-photo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 5px 6px rgba(2, 0, 3, 1);
}

.comment.active {
  opacity: 1;
}
.triangle {
  width: 0; 
  height: 0; 
  border-left: 500px solid transparent;
  border-right: 500px solid transparent;
  position: absolute;
  border-bottom: 500px solid #5c3a21;
}
.footer{
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: ;
    background-color: #5c3a21;
    color: #f8f4ed;
    text-align: center;
    line-height: 50px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}
.video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Or any background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
    transition: opacity 1s ease-out; /* For fade out effect */
}
@keyframes fadeout{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
#splash-screen.fade-out {
    animation: fadeout 1s forwards;
    opacity: 0;
    visibility: hidden;
}
#renderCanvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Price display overlay */
#priceDisplay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.2rem;
  color: #5C3A21;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Container for UI panels */
.ui-layout {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}

/* Side panels */
.ui-panel {
  display: flex;
  flex-direction: column;
  width: 280px;
  background: #ffffffdd;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
}

/* Buttons */
button {
  height: 45px;
  margin: 6px 0;
  font-size: 16px;
  background-color: #EC97A4;
  color: white;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #F2B3BD;
}

/* Dropdowns & textarea */
select, textarea {
  margin: 8px 0;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

/* Suggested comments */
.suggestion-btn {
  background-color: #E7FFD2;
  color: #5C3A21;
}

/* Summary box */
.order-summary {
  background-color: #FCEEC4;
  padding: 10px;
  margin-top: 10px;
  border-radius: 12px;
  font-size: 15px;
  color: #5C3A21;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.05);
}

/* Send button */
.send {
  background-color: #FFD43B;
  color: #5C3A21;
  font-size: 18px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.send:hover {
  background-color: #FFEA7A;
}

/* Responsive text blocks */
h3 {
  color: #5C3A21;
  margin: 12px 0 6px;
}

/* 🌞 Full Section Layout */
.meet-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 40px;
  background-image: url("bg8.png");
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* 🎠 Carousel Strip */
.meet-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px;
  width: 100%;
  height: 270px;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* 🍯 Custom Scrollbar */
.meet-carousel::-webkit-scrollbar {
  height: 10px;
}
.meet-carousel::-webkit-scrollbar-track {
  background-color: #f8f4ed;
  border-radius: 50px;
}
.meet-carousel::-webkit-scrollbar-thumb {
  background-color: #D9A441;
  border-radius: 50px;
  border: 2px solid #FFF8F0;
}
.meet-carousel {
  scrollbar-color: #D9A441 #FCEEC4; /* Firefox support */
  scrollbar-width: thin;
}

/* 👤 Individual Profile Cards */
.team-member {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.4s ease, filter 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  filter: blur(1px);
  transform: scale(0.9);
  position: relative;
}

.team-member.active {
  transform: scale(1.6);
  filter: none;
  animation: bounce 0.4s ease;
  z-index: 5;
}

/* 🖼️ Profile Photo */
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 💬 Hide text inside photo bubble */
.name, .role {
  display: none;
}

/* 📋 Spotlight Info Panel */


/* ✨ Bounce Animation for Highlight */
@keyframes bounce {
  0%   { transform: scale(1.3); }
  50%  { transform: scale(1.6); }
  70%  { transform: scale(1.5); }
  100% { transform: scale(1.6); }
}

/* 🍩 Section Container */
.circle-feedback {
  position: relative;
  width: 100%;
  height: 900px;
  background-color: #FFF8F0;
  margin-bottom: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

.circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #f8f4ed;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 25px;
  border: 3px solid #D9A441;
  text-align: center;
  transition: transform 0.3s ease, z-index 0.3s ease;
  z-index: 1;
}
.circle h3{
    padding: 10px;
}
.newsletter {
  top: 50%;
  left: 50%;
  transform: translate(-80%, -2%);
}

.comments {
  top: 50%;
  left: 50%;
  transform: translate(-15%, -50%);
  z-index: 1;
}
#newcomm{
  transition: background 0.2s ease-in-out;
}
#newcomm:hover{
  background-color: #d2a147;
}
#circomm{
    transition: background 0.2s ease-in-out;
}
#circomm:hover{
    background-color:#FFF8F0 ;
}
.circle.active {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 3;
}

.circle h3 {
  font-size: 1.6rem;
  color: #5C3A21;
  margin-bottom: 16px;
}
#message{
    min-height: 20px;
    height: 22px;
    max-height:30px;
    width: 230px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
#sendbtn{
    margin-top: 6px;
}
input, textarea {
  width: 85%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: none;
  height: auto;
  border: 3px solid #D9A441;
  border-radius: 40px;
  background-color: #f8f4ed;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}


input::placeholder,
textarea::placeholder {
  color: #5C3A21;
  opacity: 0.6;
}

input:focus,
textarea:focus {
  outline: none;
  background-color: #FFF8F0;
  box-shadow: 0 0 0 3px #FFD77899;
}
#Subscribe{
    height: 40px;
    margin-top: 0px;
}

button {
  background-color: #D9A441;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  border: none;
  padding: 0px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
button:hover {
  background-color: #FFB84D;
}


@media (max-width: 768px) {
  .circle-feedback {
    flex-direction: column;
    height: auto;
  }

  .circle {
    width: 300px;
    height: 300px;
    max-width: 400px;
    overflow: hidden;
    margin-left: -0.5rem;
  }

  .newsletter, .comments {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .meet-wrapper{
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
    .comm{
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    }
    .order-class{
    display: flex;
    height: 100%;
    flex-direction: column;
    margin: 0 auto;
    margin-left: 5.5rem;
    }
        .circle comments > button{
            z-index: 19;
        }
        .circle comments{
            z-index: 19;
        }
        .team-photo{
        z-index: 13;
        }
    }
.comment p {
    font-size: 1rem;
    line-height: 1.2rem;
    margin-top: -1rem;
    max-width: 270px;
}
.order p{
    text-align: center;
    margin: 0 auto;
}

circle newsletter:hover{
    background-color: #f9f3e8;
    transition: background-color 0.3s ease-in-out;
}
.bio:hover {
    transform: translateX(3px) translateY(3px);
    transition: opacity 0.5s, transform 0.5s;
}
#spotlight-name:hover{
    transform: translateX(3px) translateY(3px);
    transition: opacity 0.5s, transform 0.5s;
}
#spotlight-role{
    transform: translateX(3px) translateY(3px);
    transition: opacity 0.5s, transform 0.5s;
}
.meet-wrapper h2{
    color: #5c3a21;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}
.meet-wrapper h2:hover{
    transform: translateX(3px) translateY(3px);
    transition: opacity 0.5s, transform 0.5s;
}
/* Ensure the spotlight info container has enough space */
.spotlight-info {
    padding: 20px; /* Add some internal spacing */
    margin-top: 30px; /* Space from carousel */
    text-align: center;
    min-height: 180px; /* **Increase this if needed** to accommodate longer bios */
    display: flex; /* Use flexbox for easy centering of its children */
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center; /* Horizontally center content */
    /* border: 1px solid red; /* TEMPORARY: for debugging, to see the container's bounds */
    overflow: visible; /* Ensure content isn't cut off if it exceeds bounds */
}

#spotlight-name {
    font-size: 2em; /* Ensure font size is readable */
    font-weight: bold;
    color: #222;
    margin-bottom: 8px; /* Space below the name */
    white-space: normal; /* Allow text to wrap */
}

#spotlight-role {
    font-size: 1.2em; /* Readable font size */
    color: #777;
    margin-bottom: 20px; /* Space below the role */
    white-space: normal; /* Allow text to wrap */
}

.spotlight-info .bio {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 600px; /* **Adjust this value if your text is too wide and causing overflow** */
    margin-left: auto; /* Center the text block */
    margin-right: auto; /* Center the text block */
    color: #444;
    overflow: visible; /* Crucial: Do not hide text if it overflows */
    word-wrap: break-word; /* Helps with very long words that might not wrap */
}

/* Ensure these are correctly handled by your GSAP animations */
#spotlight-name,
#spotlight-role,
.spotlight-info .bio {
    opacity: 0; /* Starts invisible, GSAP fades it in */
    transition: opacity 0.25s ease-in-out; /* Smooth transition */
}
@media (max-width:720px) {
    .tag-line{
        font-size: 1.5rem;
        max-width: 300px;
        top: 40%;
    }
    button{
        text-align: center;
        padding-top: 0px;
        margin: 0 auto;
    }
    .order-button,.button-large,.button-small{
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        height: 50px;
    }    .button-large,.button-small{
        margin-top: 0px;
        text-align: center;
        justify-content: center;
        height: 50px;
    }
    .background{
        height: 100vh;
        width: 100%;
        margin: 0;
    }
    
}




/*custom.html css*/

.form{
    background-image: url(bg8.png);
    padding: 30px;
    background-size:auto;
    width:100%;}
.label{
    border-radius: 50%;
}
#fllname, #email, #phone{
    width: 70px;
    margin: ;
}

.social-links{
    display: grid;
    color: #5C3A21;
    

}  
.foot{
    bottom: 100;
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: absolute;
    background-color: #f8f4ed;
    text-align: center;
    line-height: 50px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}
.footer-logo{
    position: absolute;
    left: 0;
    padding: 50px;
    width: 110px;
    z-index: 90;
}

.footerp{
    position: absolute;
    bottom: 0;
    justify-self: center;
    line-height: 2rem;
    z-index:20;
    max-width: 90vh;
    font-weight: 400;
    text-align: center;
    font-size: 1rem;
    margin: 0 auto;
}
.foot{
    color:#5C3A21;
}
.foot a{
    font-weight: 400;
    text-decoration: underline;
}
.social-links a{
    text-decoration: none;
    color: #5C3A21;
}
.contact-links{
    display: grid;
    color: #5C3A21;
}
.contact-links a{
     text-decoration: none;
    color: #5C3A21;
}
.links{
    display: grid;
    padding-top: 9rem;
    grid-template-columns: 50% 50%;
    height: 16rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}