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

body {
    background-color: #ebe9e6;
    overflow-x: hidden; 
    overflow-y: auto; 
    height: 100%; 
}

html {
    height: 100%;
}


/* HEADER AND NAVBAR */


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
}

.logo img {
    height: 80px;
    width: auto;	
    font-size: 2rem;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    margin-left: -10px;
}

.logo {
    flex: 1;
    cursor: pointer;
}

.navbar {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: 0.3s ease;
    transform: translateX(-360px);
	list-style: none;
}

.navbar a {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 5px;
    font-family: "League Spartan";
}

.navbar a::before {
    content: ' ';
    position: absolute;
    top: 120%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

.navbar a:hover {
    color: #fff;
}

.header .toggle-btn{
	color: #fff;
	cursor: pointer;
	display: none;
}

.navbar a:hover::before,
.navbar a.active::before {   /* Keep the underline on the active link */
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: #fff;  /* Keep the color on hover or active state */
}


/* Cart Button */


.cta-buttons {
    display: flex;
    gap: 10px;
}

button {
    font-size: 18px;
    padding: 7px 15px;
    background-color: transparent;
    border: 2px solid #ebe9e6;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin: 0 10px;
    color: #000; 
}

button svg {
    width: 20px;
    height: 20px;
    fill: #ebe9e6;
    transition: fill 0.3s ease;
}

button:hover {
    background-color: #ebe9e6;
    border-color: #fff; 
    color: #fff; 
}

button:hover svg {
    fill: #ec3c20; 
}


/* DROPDOWN */

.dropdown-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #ec3c20;
	color: #ebe9e6;
	font-family: "League Spartan";
	backdrop-filter: blur(15px);
	overflow: hidden;
	text-align: center;
	transition: transform 0.3s ease-in-out;
	transform: translateY(-100%);
	padding-top: 80px;
	z-index: 1000;
}

.dropdown-menu.open {
	transform: translateY(0);
}

.dropdown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-menu li {
	padding: 1.5rem; /* Increased padding for spacing */
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown-menu li a {
	text-decoration: none;
	color: #ebe9e6;
	font-size: 1.8rem;
	font-weight: bold;
	transition: color 0.3s;
}

.dropdown-menu a:hover {
	color: #1a1411;
}

.toggle-btn i {
    font-size: 2rem; /* Increase size */
}


/* Close Button */


.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: black;
	color: #ebe9e6;
	font-size: 2.5rem;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 1100;
    
}

.close-btn:hover {
	opacity: 1;
}

.close-btn:active {
    background: #5c4f41;
}


/* Button Styles */


.dropdown-menu .cta {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.dropdown-menu .cta button {
	background: #ebe9e6;
	color: #ec3c20;
	font-size: 1.2rem;
	font-weight: bold;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}

.dropdown-menu .cta-button:hover {
	background: #5c4f41;
	color: #ebe9e6;
}


/* RESPONSIVE DESIGN */


@media (max-width: 1100px) {
	.navbar, 
	.header .cta-button {
		display: none;
	}
	
	.header .toggle-btn {
		display: block;
	}
	
	.dropdown-menu {
		display: block;			
	}
}

@media (max-width: 576px) {
	.dropdown-menu li a {
		font-size: 1.6rem;
	}
	
	.close-btn {
		font-size: 2rem;
		right: 20px;
	}
}

.navbar.active {
    display: flex;
}


.cart-btn-dropdown {
    background-color: #fff; 
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%; 
    cursor: pointer;
    transition: all 0.3s ease; 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}





/* HERO SECTION */


.hero-section {
    background-image: url("images/herobg.png");
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /*Parallax effect*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); 
    z-index: 1;
}


.hero-logo {
    max-width: 80%;
    width: 800px;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
    z-index: 2;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1200px) {
    .hero-logo {
        max-width: 90%;
        width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 100%;
        width: 400px;
    }
}






/* Ticker Container */


.ticker-container {
    width: 100vw;
    background-color: #ec3c20; 
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    display: flex;
    position: relative;
    border-top: 3px solid #000; 
    border-bottom: 3px solid #000; 
}

.ticker-wrapper {
    display: flex;
    width: max-content;
    animation: tickerMove 15s linear infinite;
}

.ticker-text {
    font-size: 20px;
    font-weight: bold;
    font-family: "League Spartan", sans-serif;
    color: #000; 
    text-transform: uppercase;
    padding-right: 50px; 
    
}

.circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #000; 
    border-radius: 50%; 
    margin: 0 15px; 
    margin-top: 3px;
    margin-right: 55px;
}


/* Animation */
@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}






/* SPLIT SECTION */


.split-section {
    display: flex;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.split-text {
    flex: 1;
    min-width: 50%; /* Covers the left half */
    height: 100vh;
    display: flex;
    flex-direction: column; /* Stacks content vertically */
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -60px
}

.split-text img {
    max-width: 150%;
    height: 30%;
    object-fit: contain; 
}

.split-image {
    flex: 1;
    min-width: 50%; /* Cover the right half */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-image img {
    max-width: 100%;
    height: auto;
}

.intro-text {
    font-family: "League Spartan", sans-serif;
    font-size: 20px;
    color: #333; 
    text-align: left;
    max-width: 80%;
    margin: 20px auto; 
    line-height: 1.5;
    margin-left: 95px;
    margin-top: -10px
}

.menu-button {
    background-color: #000; 
    font-family: "League Spartan", sans-serif;
    color: white;
    font-size: 18px;
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-left: -375px;
    margin-top: -5px; 
    display: inline-block;
    border: 2px solid transparent;
}

.menu-button:hover {
    background-color: #ec3c20; 
    border-color: #ec3c20; 
    transform: translateY(-3px); 
}



/* Media Query for Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .split-section {
        flex-direction: column; 
        height: auto; 
    }

    .split-text {
        align-items: center;
        text-align: center;
        padding: 30px;
        margin-top: 0;
    }

    .split-text img {
        max-width: 60%;
        height: auto;
        margin-bottom: 15px;
    }

    .intro-text {
        font-size: 18px;
        text-align: center;
        max-width: 90%;
        margin-left: auto; 
        margin-right: auto; 
        margin-top: 10px; 
    }

    .menu-button {
        font-size: 16px;
        padding: 12px 24px;
        margin-left: auto; 
        margin-right: auto; 
        margin-top: 10px; 
    }

    .split-image {
        min-height: 400px; 
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Media Query for Mobile Screens */
@media (max-width: 767px) {
    .split-section {
        flex-direction: column; 
        height: auto; 
    }

    .split-text {
        align-items: center;
        text-align: center;
        padding: 20px;
        margin-top: 0; 
    }

    .split-text img {
        max-width: 80%;
        height: auto;
        margin-bottom: 10px;
    }

    .intro-text {
        font-size: 16px;
        text-align: center;
        max-width: 95%;
        margin-left: auto; 
        margin-right: auto; 
        margin-top: 10px; 
    }

    .menu-button {
        font-size: 14px;
        padding: 10px 20px;
        margin-left: auto; 
        margin-right: auto; 
        margin-top: 10px; 
    }

    .split-image {
        min-height: 250px; 
    }
}








/* Three section background */


.three-columns {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 200px;
    gap: 60px;
    background-image: url('images/three.png'); 
    background-position: center;
    background-size: cover;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    color: #fff; 
}

.three-columns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); 
    z-index: 1;
}

.column {
    flex: 1;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(5px);
    width: 40vw; 
    height: 70vh; 
    overflow: auto;
}

.column:hover {
    transform: translateY(-10px);
}

.column .icon {
    width: 80px; 
    height: 80px; 
    margin-bottom: 30px; 
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.column h2 {
    font-size: 30px;
    font-family: "League Spartan";
    font-weight: bold;
    margin-bottom: 15px; 
    color: #ec3c20;
    text-align: center;
}

.column p {
    font-size: 20px;
    text-align: center;
    font-family: "League Spartan";
    color: #5c4f41;
    line-height: 1.2;
}

/* Responsive design */

@media screen and (max-width: 768px) {
    .three-columns {
        flex-direction: column;
        gap: 10px;
    }

    .column {
        margin-bottom: 20px;
    }
}






/* Signup Section */


.signup-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.signup-text {
    max-width: 40%;
    font-family: "League Spartan", sans-serif;
}

.signup-text h2 {
    font-size: 28px;
    font-weight: bold;
    font-family: "League Spartan", sans-serif;
}

.signup-text p {
    font-size: 16px;
    color: #555;
    font-family: "League Spartan", sans-serif;
    margin-top: 4px;
}

.signup-form {
    width: 55%;
    background: transparent; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-family: "League Spartan", sans-serif;
}

.form-group div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #000;
    background: none;
    outline: none;
    font-family: "League Spartan", sans-serif;
}

.signup-btn {
    margin-top: 10px;
    margin-left: -1px;
    padding: 12px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    border: 1px solid #000;
    background: none;
    cursor: pointer;
    width: 100%;
    font-family: "League Spartan", sans-serif;
}

.signup-btn:hover {
    background: #ec3c20;
    color: #fff;
}


/* Responsive Design */



/* Media Query for Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .signup-section {
        flex-direction: row; 
        padding: 30px;
        margin: 40px auto;
    }

    .signup-text {
        max-width: 45%;
        text-align: left;
        margin-bottom: 0;
    }

    .signup-form {
        width: 50%;
        padding: 15px;
    }

    .form-group {
        flex-direction: row; 
        gap: 10px;
    }
}

/* Responsive Design for Mobile Screens*/
@media (max-width: 767px) {
    .signup-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin: 30px auto;
    }

    .signup-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .signup-form {
        width: 100%;
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        gap: 10px;
    }
}






/* Footer Section */


footer {
    background: #000; 
    padding: 80px 0 0 0; 
    font-family: "League Spartan", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

.footer-logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.brand h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.brand {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    margin-bottom: 100px;
    margin-top: 80px;
}

h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
}

ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
    
}

ul li a:hover {
    color: #ec3c20; 
}

footer p {
    color: #fff;
    font-size: 1.0rem;
}


.footer-bottom {
    text-align: center;
    background: #ec3c20;
    color: #fff;
    padding: 15px;
    width: 100%;
    height: 100px;
}

.footer-bottom p {
    font-size: 22px; 
    font-weight: bold;
    color: #fff;  
    margin-top: 30px;   
}


@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column; 
        align-items: center;
    }

    .footer-logo {
        font-size: 2.5rem; 
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section {
        margin-top: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .brand {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem; 
    }

    footer p {
        font-size: 0.9rem; 
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 2rem; 
    }

    .footer-section {
        margin-bottom: 20px; 
    }

    .social-icons a {
        font-size: 1rem; 
    }

    footer p {
        font-size: 0.85rem; 
    }

    .footer-bottom {
        padding: 10px; 
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-section {
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .footer-bottom {
        padding: 5px; 
    }
}






/* Back to Top Button */


.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ec3c20;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none; 
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1000;
}

.back-to-top-btn:hover {
    background-color: #5c4f41;
    transform: translateY(-3px);
}

.back-to-top-btn[style*="display: block"] {
    opacity: 1;
}
