
.{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; 
}

.container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; 
}

Reusable Button Styles
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none; 
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: #000;
    color: #fff;
}

.primary-btn:hover {
    background-color: #333;
}

/* Header Styles */
.main-header2 {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 40px;
    background-color: #ecf00a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between logos */
}

.logo {
    height: 60px; /* Adjust as needed */
    filter: grayscale(100%); /* Makes logos black and white */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/*Header*/
.main-header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0f0f0f;
}

.nav ul {
    display: flex;
    gap: 30px;
}
.nav a {
    font-weight: 500;
    color: var(--light-text);
    transition: color 0.3s ease;
}
.nav a:hover {
    color: var(--dark-text);
}
.header-icons {
    display: flex;
    gap: 15px;
}
.header-icons .icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.sign-up-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.sign-up-btn:haver {
    background-color: #f0e6e6;
}
Hero Section
.hero-section {
    background-color: #fff;
    padding: 80px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; 
}

.hero-content {
    flex: 1; 
}

.hero-content h1 {
    font-size: 4em; 
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
}

/*New Arrivals Section*/ 
.new-arrivals-section {
    background-color: #fff;
    padding: 60px 0;
    position: relative;/*For the top bar positioning */
}

.section-top-bar {
    background-color: #ffda00;/*Yellow bar*/
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 0.9em;
    letter-spacing: 2px;
}

.new-arrivals-section h2 {
    text-align: nome;
    font-size: 2.5em;
    margin-bottom: 40px;
    margin-top: 20px;/*Space below the top bar*/ 
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);/*3columns*/
    gap: 30px;
}

.arrival-item {
    text-align: center;

}

.arrival-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.arrival-item p {
    margin-top: 15px;
    font-weight: 500;
}

/*Payday Sale Section */
.payday-sale-banner {
    display: flex;
    align-items: center;
    background-color: #f8d303; /* Yellow  background color from the image */
    width: 90%; /*Adjust width as needed */
    max-width: 1000px; /* Max width to control size */
    border-radius: 15px; /* Slightly rounded corners */
    overflow: hidden; /* Important to contain the image and stars */
    position: relative; /* For positioning the stars */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px; /* Add some internal padding */
}

.banner-image {
    flex: 0 0 63%; /*Image takes about 45% of the width */
    height: 100%; /* Ensure image container fills height */
    display: flex; /* Use flex to vertically center image if needed */
    align-items: flex-end; /* Align image to the bottom, if it`s taller */
    padding: 20px; /* Add some internal padding */
}

.banner-image img {
    max-width:100%; /* Ensure image fits */
    height: auto; /* Maintain aspect radio */
    display: block; /* Remove extra space bellow image */
    transform: translatey(1opx); /*Adjust vertical position slightly */
}
.banner-content {
    flex: 1; /*Contet takes remaining space */
    padding-left: 40px; /* Padding inside the content area */
    color: #333; /* Dark text color */
    text-align: left;
}

.banner-content .main-title {
    background-color: #fff; /* White background for the title */
    color: #000; /* Black text for the title */
    font-size: 3.5em; /* Large font size for "PAYDAY SALE NOW" */
    font-weight: 700; /* Bold font weight */
    padding: 5px 15px; /* Padding around the title text */
    display: inline-block; /* Allows padding and background to wrap content */
    line-height: 1.1; /* Adjust line height for multiline title */
    margin-bottom: 20px;
}

.banner-content .description {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4;
    max-width: 350px; /* Limit width of description for readability */
}

.banner-content .date {
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-content .terms {
    font-size: 0.85em;
    color: #666; /* Lighter color for terms */
    margin-bottom: 25px;
}

.shop-now-button {
    background-color: #000; /* Black button background */
    color: #fff; /* White button text */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-now-button:hover {
    background-color: #333; /* Darker black on hover */
}

/* Decorative Stars */
.star {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    width: 25px; /* Default size */
    height: 25px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); /* Star shape */
    transform: rotate(var(--rotation, 0deg)); /* Allows individual rotation */
}

/* Positioning for each star */
.star-1 { top: 15%; left: 10%; transform: rotate(15deg); width: 20px; height: 20px;}
.star-2 { bottom: 20%; left: 5%; transform: rotate(45deg); }
.star-3 { top: 50%; left: 3%; transform: rotate(80deg); width: 18px; height: 18px; }
.star-4 { top: 25%; right: 40%; transform: rotate(-30deg); width: 15px; height: 15px; } /* Adjust right to be within yellow */
.star-5 { bottom: 10%; right: 35%; transform: rotate(60deg); }
.star-6 { top: 5%; left: 25%; transform: rotate(20deg); width: 12px; height: 12px; }


/* Responsive adjustments */
@media (max-width: 768px) {
    .payday-sale-banner {
        flex-direction: column; /* Stack elements vertically */
        text-align: center;
        padding: 20px 0; /* Adjust padding for smaller screens */
    }

    .banner-image {
        padding-left: 0;
        margin-bottom: 20px; /* Space between image and content */
        align-items: center; /* Center image horizontally in its container */
        width: 100%;
    }

    .banner-image img {
        max-width: 70%; /* Make image smaller on mobile */
        transform: translateY(0); /* Reset transform */
    }

    .banner-content {
        padding: 0 20px; /* Adjust padding for content */
    }

    .banner-content .main-title {
        font-size: 2.5em; /* Smaller title on mobile */
        margin-bottom: 15px;
    }

    .banner-content .description {
        max-width: 90%; /* Allow description to take more width */
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide some stars or adjust their positions for smaller screens */
    .star-4, .star-5, .star-6 {
        display: none; /* Hide smaller/less prominent stars */
    }
    .star-1 { top: 5%; left: 5%; }
    .star-2 { bottom: 5%; left: 5%; }
    .star-3 { top: 15%; left: 85%; }
}

@media (max-width: 480px) {
    .banner-image img {
        max-width: 80%; /* Further adjust image size */
    }
    .banner-content .main-title {
        font-size: 2em;
    }
}

/*Young's Favourite Section*/
.youngs-favourite-section {
    background-color: #fff;
    padding: 60px 0;
    margin-top: 40px;
}

.youngs-favourite-section h2 {
    text-align: left; 
    font-size: 2em;
    margin-bottom: 30px;
}

.youngs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
}

.youngs-item {
    text-align: center;
}

.youngs-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.youngs-item p {
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.95em;
    color: #555;
}

App Download Section
.app-download-section {
    background-color: #fff;
    padding: 80px 0;
    margin-top: 40px;
}

.app-download-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-content {
    flex: 1;
    text-align: left;
}

.app-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.app-badges img {
    height: 40px; 
    margin-right: 15px;
}

.app-mockup {
    flex: 1;
    text-align: right;
}

.app-mockup img {
    max-width: 80%; 
    height: auto;
}

/*Newsletter Section*/
.newsletter-section {
    background-color: #ffda00; /*Yellow backgrounnd*/
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.newsletter-section h3 {
    font-size: 2em;
    font-weight: 700;
    color: #fdfdfd;
    margin-bottom: 30px;
}
.newsletter-section p {
    color: #fff;

}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex-grow: 1; /*All input to take up available space */
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    outline: none; /*Remove outline on focus */
}

.newsletter-form .subscribe-btn {
    background-color: #000000;
    color: #fff;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
}

.newsletter-form .subscribe-btn:hover {
    background-color: #333;
}
/* Main Footer Section */
.main-footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 60px 20px; /* Adjust padding */
}

.footer-container {
    max-width: 1200px; /* Match your site's content width */
    margin: 0 auto; /* Center the footer content */
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-between; /* Distribute space between columns */
    gap: 30px; /* Space between columns */
}

.footer-column {
    flex: 1; /* Allows columns to grow and shrink */
    min-width: 180px; /* Minimum width before wrapping */
    margin-bottom: 20px; /* Space between columns on wrap */
}

.footer-column h3,
.footer-column h4 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8f8f7; /* Yellow color for headings */
}

.footer-column p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #9e8787;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none; /* Remove bullet points from lists */
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #ccc; /* Light grey for links */
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffcc00; /* Yellow on hover */
}

.social-links {
    display: flex;
    gap: 15px; /* Space between social icons */
}

.social-links a {
    color: #000; /* Black icon color */
    background-color: #ffcc00; /* Yellow background for icons */
    width: 35px;
    height: 35px;
    border-radius: 50%; /* Make them circular */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: #fff; /* White background on hover */
    color: #ffcc00; /* Yellow icon on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .community-content h2 {
        font-size: 1.8em; /* Smaller heading on mobile */
    }

    .community-content p {
        font-size: 1em;
    }

    .email-signup {
        flex-direction: column; /* Stack input and button vertically */
        align-items: center; /* Center them */
        max-width: 90%; /* Allow input group to take more width */
    }

    .email-signup input[type="email"] {
        width: 100%; /* Full width for input */
        margin-bottom: 10px; /* Space between input and button */
    }

    .email-signup button {
        width: 100%; /* Full width for button */
    }

    .footer-container {
        flex-direction: column; /* Stack footer columns vertically */
        align-items: center; /* Center columns */
        text-align: center; /* Center text within columns */
    }

    .footer-column {
        min-width: unset; /* Remove min-width to allow full width */
        width: 100%; /* Make columns full width */
        margin-bottom: 30px; /* More space between stacked columns */
    }

    .social-links {
        justify-content: center; /* Center social icons */
    }
}

@media (max-width: 480px) {
    .join-community-section {
        padding: 40px 15px;
    }
    .community-content h2 {
        font-size: 1.5em;
    }
    .main-footer {
        padding: 40px 15px;
    }
    .footer-column h3,
    .footer-column h4 {
        font-size: 1.2em;
    }
}
