/* Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato&display=swap');

/* Navbar Stylings */
.navbar {
    font-family: "Bebas Neue", sans-serif;
}

/* Logo */
.navbar .navbar-brand img {
    width: 170px;
    height: auto;
    margin: 0 20px;
}

/* Navbar Links */
.navbar .navbar-nav .nav-link {
    color: white;
    font-size: 1.7rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link.active {
    color: #606060;
}

.navbar .navbar-nav .nav-link:hover {
    color: #a8a8a8;
}

.navbar-toggler {
    border-color: white !important;
}

.navbar-toggler-icon {
    width: 25px;
    height: 3px;
    display: block;
    margin: 5px auto;
    position: relative;
    filter: brightness(0) invert(1);
}

.navbarButtons{
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: black !important;
    background-color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 10px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.navbarButtons:hover {
    background-color: #9b9b9b;
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px;
    max-width: 150px;
    display: block !important;
}

.dropdown-menu a {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    color: black !important;
    text-decoration: none !important;
    font-weight: 500;
    text-align: center !important;
}

/* Add hover effect */
.dropdown-menu a:hover {
    background-color: #f1f1f1;
    border-radius: 4px;
}

/* Style the logout button */
.logout-btn a {
    display: block;
    font-size: 1.2rem;
    margin: 10px;
    border-radius: 4px;
    text-align: center !important;
    font-weight: 500;
    border: 2px solid black;
}

.logout-btn a:hover {
    background-color: #8a8a8a;
    color: white;
}



/*HOME PAGE*/
/* Home Hero Section */
.home-hero-section {
    position: relative;
    height: 86vh;
    background-image: url('/images/DSC07672.jpg');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.home-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-hero-section .container {
    position: relative;
    z-index: 2;
}

.home-hero-section img{
    width: 20rem;
    height: auto;
    padding-bottom: 5%;
}

.home-hero-section p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
}

.home-hero-section .btn {
    padding: 0.75rem 2rem;
    font-size: 1.6rem;
    font-family: 'Bebas Neue', sans-serif;
}

.home-hero-section .btn:hover {
    transition: background-color 1s ease;
}


/* Gallery Section */
.gallery-section {
    background: url('/images/gallery-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.gallery-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Gallery container */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Gallery wrapper */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

/* Gallery items */
.gallery {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.middle {
    width: 350px;
    height: auto;
    transform: scale(1.2);
    opacity: 1;
}

/* Arrow buttons */
.gallery-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.left-arrow {
    left: 0.5%;
}

.right-arrow {
    right: 0.5%;
}

/* How it works section stylings */
.how-it-works {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 3.5rem 1.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    margin-top: 0;
}

.step .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #a8a8a8;
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step img {
    width: 35px;
    height: 35px;
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.line {
    width: 20rem;
    height: 1px;
    background-color: #000;
}

.line:last-child {
    display: none; /* Hide the last line */
}

/* Banner Section */
.donation-banner img{
    width: 100%;
    height: 100vh;
}

/* Hero sections */
.hero-about-us {
    position: relative;
    width: 100%;
    height: 86vh;
    background-image: url('/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-contact-us {
    position: relative;
    width: 100%;
    height: 86vh;
    background-image: url('/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-faq-section {
    position: relative;
    width: 100%;
    height: 86vh;
    background-image: url('/images/faq-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-products-section {
    position: relative;
    width: 100%;
    height: 86vh;
    background-image: url('/images/home-hero-temp.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-about-us .overlay, .hero-contact-us .overlay, .hero-faq-section .overlay, .hero-products-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-about-us .hero-content, .hero-contact-us .hero-content, .hero-faq-section .hero-content, .hero-products-section .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-about-us h1, .hero-contact-us h1, .hero-faq-section h1, .hero-products-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    color: #BCBBBB;
    letter-spacing: 3px;
    margin: 0;
}

/* ABOUT US PAGE */
/* About Us section */
.about-section {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('/images/about-content.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.about-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 1rem;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}


/* Vision Mission Section */
.vision-mission-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1100px;
    align-items: center;
}

.vision {
    grid-column: 1;
    text-align: center;
}

.vision-image {
    grid-column: 2;
    display: flex;
    justify-content: end;
    align-items: center;
}

.vision-image img {
    width: 300px;
    height: auto;
    object-fit: cover;
    margin-right: 50px;
}

.mission-image {
    grid-column: 1;
    display: flex;
    align-items: center;
}

.mission-image img {
    width: 300px;
    height: auto;
    object-fit: cover;
    margin-left: 50px;
}

.mission {
    grid-column: 2;
    text-align: center;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}


/* Core Values Section */
.core-values-section {
    background: url('/images/core-values-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.values-sub-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    display: flex;
    align-items: center;
    background: rgba(80, 80, 80, 0.45);
    border-radius: 20px;
    padding: 1.5rem;
}

.value-card .icon img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}

.value-card .text-content {
    text-align: left;
}


.value-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}


/* CONTACT US PAGE */
/* Contact Section */
.contact-section {
    background-color: black;
    color: white;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #111;
    border: 1px solid white;
    border-radius: 10px;
    overflow: hidden;
}

/* Left Side: Contact Info */
.contact-info {
    background-color: #111;
    padding: 5rem 4rem;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.contact-heading {
    font-size: 1rem;
    margin-bottom: 3rem;
}

.contact-details-row {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}

.detail {
    text-align: center;
}

.detail .icon {
    width: 40px;
    height: 35px;
    margin-bottom: 1rem;
}

.detail h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.detail p {
    font-size: 0.9rem;
}

.detail a {
    color: inherit;
}

.detail a:hover {
    color: #a8a8a8;
}

.social-media-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a i {
    font-size: 2.2rem;
}

.social-icons a i:hover {
    color: #a8a8a8;
}


/* Right Side: Contact Form */
.contact-form {
    background-color: #333;
    padding: 2rem;
}

.contact-form h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-form label {
    font-family: 'Lato', sans-serif;
    text-align: left;
    font-size: 1rem;
    color: #ddd;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Lato', sans-serif;
    background-color: #444;
    border: 1px solid white;
    border-radius: 5px;
    padding: 0.7rem;
    font-size: 0.9rem;
    color: #fff;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form textarea {
    resize: none;
    height: 80px;
}

.contact-form button {
    font-family: "Bebas Neue", sans-serif;
    background-color: #000;
    color: #fff;
    border: 1px solid #a5a5a5;
    padding: 0.5rem;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #a8a8a8;
    color: black;
    border: 1px solid black;
}

.banner-section img{
    width: 100%;
    height: auto;
}


/* FAQ PAGE */
.faq-section {
    padding: 4rem;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-info h2{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-info p{
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid black;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.open {
    background: #000;
    color: #fff;
    grid-row: span 2;
    height: auto;
    transition: all 0.8s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.faq-arrow {
    width: 35px;
    height: 35px;
    background: #E0C9F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.faq-arrow img {
    width: 35px;
    height: auto;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: #c494e6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
    transition: max-height 0.3s ease;

}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0rem 2rem 2rem 2rem;
}


/* PRODUCTS PAGE */
.product-section {
    display: flex;
    justify-content: center;
    background: #D0D0D0;
}

.product-container {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1.3fr;
    align-items: start;
    padding: 0 2rem;
    max-width: 1450px;
    gap: 2rem;
    /* margin-top: 3rem; */
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: start;
    padding-top: 5rem;
}

.product-details h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    margin: 0;
}

.product-details p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    margin: 0;
    padding-right: 5rem;
    color: #5B5B5B;
}

.product-details .price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
    color: black;
}

/* Product Image */
.product-image img {
    width: 600px;
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 650px;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 2rem;
    padding: 0.3rem 0.8rem;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 0px;
}

.carousel-btn.next {
    right: 0px;
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: center;
    padding: 1rem;
}

.color-section, .number-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Lato', sans-serif;

}

.color-section p {
    font-size: 1.1rem;
}


.color-options, .number-options {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.color-circle.selected {
    border-color: #484848;
    transform: scale(1.1);
}

.size-section p {
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.size-section .size-guide {
    flex: 2;
    font-size: 0.9rem;
    text-decoration: underline;
    color: #414141;
    text-align: end;
}

.sizes {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.size-btn {
    border: 1px solid black;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background: #BCBBBB;
    cursor: pointer;
}

.size-btn.active {
    background: #444444;
    color: white;
    border: 1px solid black;
}

.size-btn:hover {
    background: #444444;
    color: white;
    transition: 0.3s ease;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    font-size: 1.3rem !important;
    border: none;
    cursor: pointer;
    font-family: "Bebas Neue", sans-serif !important;
    border-radius: 0 !important;
}

.add-to-cart-form .add-to-cart, .buy-now, .pre-order, .wishlist-btn {
    background: black !important;
    color: white !important;
    border: none !important;
}

/* .buy-now:hover {
    background: white !important;
    color: black !important;
    border: 1px solid black !important;
    transition: 0.3s ease;
} */

.add-to-cart:hover, .wishlist-btn:hover, .pre-order:hover {
    background: #a8a8a8 !important;
    border: 1px solid black !important;
    transition: 0.3s ease;
}

/* Size Guide Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Bebas neue", sans-serif;
}

.modal-content {
    background: white;
    padding: 2rem;
    width: 80vw;
    max-width: 1000px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    justify-content: center;
    align-items: center;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
}

/* Description */
.description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-top: 1rem;
}


#sizeChart {
    width: 70%;
    height: auto;
    margin-top: 1rem;
}


.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

/* Switch Button */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3.5px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: black;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Unit Label */
.unit-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}



/* Section styling */
.why-love-it {
    position: relative;
    background: url('/images/star-bg.jpg') no-repeat center center/cover;
    padding: 4rem 2rem;
    color: white;
}

.why-love-it .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.why-love-it .content {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: 0 auto;
}

.why-love-it .text-section {
    text-align: left;
}

.why-love-it .intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #BBBBBB;
    margin-bottom: 0.5rem;
}

.why-love-it h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.3rem;
    margin: 0;
}

.top-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
    gap: 0;
}

.cards-row {
    display: flex;
    gap: 4.5rem;
}

.card {
    background: rgba(102, 102, 102, 0.41) !important;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: left;
    position: relative;
    width: 350px;
}

.card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #525252;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: -15px;
}

.icon-circle img {
    width: 30px;
    height: 30px;
}

.card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.7rem;
    font-weight: bold;
    color: white;
}

.card p {
    font-size: 1rem;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.divider {
    border: none;
    border-top: 2px solid white;
    margin: 2rem 0;
    width: 95%;
}

.bottom-section {
    margin-top: 3rem;
    display: flex;
    gap: 4.5rem;
    justify-content: center;
}




/*Footer*/
.footer {
    margin-top: auto;
    font-family: "Bebas Neue", sans-serif;
    background: black;
    padding-top: 35px;
}

.footer img {
    width: 200px;
}

.footer ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer ul li {
    list-style: none;
    font-size: 1.5rem !important;
}

.footer a:hover {
    color: #a8a8a8 !important;
}

.footer a i {
    font-size: 1.2rem;
    transition: color 0.3s ease;

}

.footer .row {
    align-items: center;
}

.footer .social-links p {
    font-size: 1.1rem;
    margin: 1.2rem 0;
    font-weight: 500;
}

.footer .social-links a i {
    font-size: 1.5rem;
}

.footer hr{
    margin-top: 2rem;
    padding: 0.5px;
    border: 1px solid white;
}

.footer .termlinks {
    display: flex;
}

.footer .termlinks ul{
    justify-content: left;
    gap: 20px;
    flex: 1;
}

.footer .termlinks ul li {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem !important;
}

.footer .termlinks p{
    /* flex: 2; */
    font-family: "bebas neue", sans-serif;
    font-size: 1rem;
    text-align: end;
    color: white;
}

/* CART STYLES*/
.cart-page {
    display: flex;
    flex-direction: column;
    min-height: 43.4vh; /* Ensures the page takes full screen height */
}

.cart-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cart-items {
    flex: 3;
}

.cart-table-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-x: auto;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.table-header th {
    padding-bottom: 15px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

.cart-table td{
    padding-top: 2%;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    /* border-radius: 50%; */
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 10px;
}

.minus-btn, .plus-btn {
    padding: 5px 10px;
    background-color: #4b4a4a;
    color: #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.delete-btn {
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.cart-summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.cart-summary {
    flex: 1;
}

.summary-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.summary-content {
    margin-bottom: 30px;
}

.summary-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.checkout-btn {
    width: 100%;
    padding: 10px;
    background-color: #515252;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.checkout-btn:hover {
    background-color: #616262;
}

/* Modal Container */
#paymentModal .payment-modal-content, #paymentSummaryModal .modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#paymentSummaryModal .modal-content {
    display: block;
}
/* Modal Title */
#paymentModal .modal-title, #paymentSummaryModal .modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
}

/* Total Price */
#paymentModal .total-price {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

/* Section Label */
#paymentModal .section-label {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Product Summary */
#paymentModal .product-summary-row {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#paymentModal .product-name {
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
}

#paymentModal .product-details {
    font-size: 13px;
    color: #444;
}

/* Color Swatch */
#paymentModal .color-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #888;
    vertical-align: middle;
    margin: 0 4px;
}

/* Input Fields */
#paymentModal .form-control {
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
}

/* Buttons */
#paymentModal .btn-prd-payment {
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#paymentModal .btn-prd-payment:hover {
    background-color: #333;
}

/* Close Button */
#paymentModal .btn-close {
    position: absolute;
    top: 20px;
    right: -100px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

#paymentSummaryModal .modal-body {
    font-size: 15px;
    padding-top: 0;
}

#paymentSummaryModal .modal-body p {
    margin-bottom: 10px;
}

#paymentSummaryModal .address-summary {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#paymentSummaryModal .modal-footer {
    border-top: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-top: 10px;
}

/* Buttons */
#paymentSummaryModal .btn-back,
#paymentSummaryModal .btn-conf-payment {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 5px;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

#paymentSummaryModal .btn-back:hover,
#paymentSummaryModal .btn-conf-payment:hover {
    background-color: #606060;
}

/* Price Summary Box */
#paymentSummaryModal .price-summary-box {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
}

#paymentSummaryModal .price-summary-box .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

#paymentSummaryModal .price-summary-box hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

#paymentSummaryModal .price-summary-box .total {
    font-weight: bold;
    font-size: 16px;
}

/* PRE ORDER MODAL */
#preOrderModal .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
    max-width: 550px;
    overflow-y: auto;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

#preOrderModal h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#preOrderModal p{
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
}

#preOrderModal h3{
    font-family: 'Lato' , sans-serif;
    align-items: start;
    font-size: 18px;
    margin-bottom: 30px;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 100px;
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Color swatch display */
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 auto; /* This centers the swatch in its container */
    display: block;
}

.quantity-group {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 100%;
}


.price-summary {
    margin-top: 25px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-row.total {
    font-weight: bold;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 15px;
}

.Order-btn {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.Order-btn:hover {
    background-color: #565656;
}

@media (max-width: 768px) {
    .cart-title {
        font-size: 20px;
    }

    .cart-wrapper {
        flex-direction: column;
    }

    .cart-items {
        flex: 1;
        margin-bottom: 20px;
    }

    .cart-table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }

    .cart-table table {
        min-width: 600px;
    }

    .cart-product-image {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .quantity-control {
        flex-direction: row;
    }

    .quantity-input {
        width: 30px;
    }

    .summary-card {
        margin-top: 20px;
    }

    .checkout-btn {
        padding: 8px;
        font-size: 14px;
    }
}


/* RESPONSIVE STYLES */
/*Navbar*/
@media (max-width: 991px) {
    /* Center logo on smaller screens */
    .navbar .navbar-brand {
        margin: auto;
    }

    /* Adjust navbar links */
    .navbar .navbar-nav {
        text-align: center;
        margin-top: 10px;
    }

    .navbar .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    /* Center the sign-up/login buttons below the menu */
    .navbarButtons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 15px 5px;
    }

    .navbarButtons button {
        width: 80%;
        margin: 5px 0;
    }

    /* Ensure icons are centered */
    .navbarIcons {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        background-color: #a9a9a9 !important;
        width: auto;
        min-width: 160px;
        z-index: 999;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        border-radius: 4px;
    }

}

@media (max-width: 768px) {
    .home-hero-section {
        height: 50vh;
        text-align: center;
        padding: 2rem;
        background-position: center !important;
    }

    .home-hero-section img {
        width: 70%;
    }

    .home-hero-section p {
        font-size: 1rem;
    }

    .home-hero-section .btn {
        font-size: 1.2rem;
        padding: 0.5rem 1.5rem;
    }

    .countdown-section {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        max-width: 100%;
        height: 40vh;
    }

    .rocket-video {
        height: 100%;
        object-fit: cover;
    }

    .countdown-container {
        max-width: 100%;
        margin-top: 2rem;
        padding: 0.7rem;
        margin-bottom: 3rem;
    }

    .countdown-container h2 {
        font-size: 1.5rem;
        padding-bottom: 2rem;
    }

    #countdown {
        flex-wrap: wrap;
        font-size: 1rem;
        gap: 0.3rem;
    }

    .time-box {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
    }

    #launchCompleteMessage {
        left: 0;
    }

    #launchCompleteMessage h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .gallery-section{
        height: 70vh;
    }

    .gallery {
        white-space: nowrap;
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
    }

    .gallery-item {
        width: 150px;
        height: auto;
    }

    .gallery-item.middle {
        width: 250px;
        height: auto;
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        text-align: center;
        width: 100%;
    }

    .step .icon {
        width: 50px;
        height: 50px;
    }


    /* Hero sections */
    .hero-about-us, .hero-contact-us, .hero-faq-section, .hero-products-section {
        height: 30vh;
    }

    .hero-about-us h1, .hero-contact-us h1, .hero-faq-section h1, .hero-products-section h1 {
        font-size: 6rem;
    }

    /* FAQ PAGE */
    .faq-section {
        padding: 2rem;
    }

    .faq-info h2{
        font-size: 2rem;
    }

    .faq-info p{
        font-size: 1rem;
        text-align: justify;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item {
        width: 100%;
        border-radius: 15px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .faq-arrow {
        width: 30px;
        height: 30px;
    }

    .faq-arrow img {
        width: 25px;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .faq-item.open .faq-answer {
        max-height: 100%;
        padding: 0.5rem 1.5rem 1.5rem;
    }

    /* About Section */
    .about-section {
        height: auto;
        padding: 4rem 1rem;
        text-align: center;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    /* Vision & Mission Section */
    .vision-mission-section {
        padding: 2rem 1rem;
    }

    .vision-mission-container {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .vision-image, .mission-image {
        display: flex;
        justify-content: center;
    }

    .mission-image{
        order: 2;
    }

    .vision-image img, .mission-image img {
        width: 250px;
        height: auto;
        margin: 0;
    }

    /* Core Values Section */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .value-card .icon img {
        margin: 0 auto 1rem;
        width: 80px;
        height: 80px;
    }

    .value-card .text-content {
        text-align: center;
    }

    /* Adjust layout for smaller screens */
    .contact-section{
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-details-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-icons a i {
        font-size: 1.8rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    .contact-form button {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .donation-banner img, .banner-section img{
        width: 100%;
        height: auto;
    }

    .product-container {
        grid-template-columns: 1fr; /* Stack the columns on smaller screens */
        padding: 0 1rem;
    }

    /* Product Image */
    .product-image img {
        width: 100%; /* Make the product image responsive */
        object-fit: contain; /* Keep aspect ratio intact */
    }

    /* Product Details */
    .product-details {
        padding-top: 1rem;
    }

    .product-details h2 {
        font-size: 1.7rem;
    }

    .product-details p {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .product-details .price {
        font-size: 1.1rem;
    }

    .product-options {
        padding: 1rem;
    }

    .color-section {
        font-size: 1rem;
    }

    .size-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .sizes {
        gap: 1rem;
    }

    .size-btn {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .action-buttons .btn {
        font-size: 1.1rem;
    }

    .why-love-it{
        padding: 2rem 1.5rem;
    }

    .why-love-it .text-section {
        text-align: center;
    }

    .why-love-it h2 {
        margin-bottom: 1.5rem;
    }

    .top-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cards-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .bottom-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }

    /* Close Button */
    #paymentModal .btn-close {
        top: 15px;
        right: -70px;
    }


    .footer .row {
        text-align: center;
    }

    .footer img {
        width: 150px;
        margin-bottom: 15px;
    }

    .footer ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer .social-links {
        margin-top: 15px;
        text-align: center;
    }

    .footer .social-links a {
        margin: 0 10px;
    }

    .footer .termlinks {
        flex-direction: column;
        text-align: center;
    }

    .footer .termlinks ul {
        justify-content: center;
    }

    .footer .termlinks p {
        text-align: center;
        margin-top: 20px;
    }
}
