@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    background-color: #fffffffff;
    color: #ffffff;
}

.new_arrivals_page_container {  
   padding: 0;
    background-color: #000;
    color: #ffffff;
	max-width: 1920px;
	margin: 0px auto 0px auto;
}

header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.hero h1 {
    font-size: 75px;
    line-height: 75px;
    margin: 50px 0px 50px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 4px 4px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}



.hero-content {
    text-align: center;
    padding: 0px 20px 50px 20px;
}

.hero-content h1 {
    font-size: 50px;
    font-family: 'Monday Rain';
    line-height: 70px;
    margin: 10px 50px;
    text-shadow: 4px 4px rgba(0, 122, 255, 1.00);
    max-width: 1920px;
}

.hero-content p {
    font-size: 30px;
    font-family: 'Noteworthy-Bold';
    line-height: 40px;
    margin: 10px 300px;
}

.cta-button {
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
    background-color: #007BFF;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    text-align: center;
	font-family: 'Noteworthy-Bold';
}

.featured-products {
    padding: 20px 20px;
    text-align: center;
	
}

.featured-products h2 {
    font-size: 30px;
    font-family: 'Noteworthy-Bold';
    line-height: 70px;
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
}

.product-item {
    background-color: #333;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.333% - 40px);
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.product-item h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
    font-family: 'Noteworthy-Bold';
}

.product-item p {
    font-size: 16px;
    color: #ccc;
    font-family: 'Noteworthy-Bold';
}

.product-item span {
    font-size: 20px;
    color: #ff6f61;
    display: block;
    margin-top: 10px;
}

.product-item a {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



/* Media Queries */
/* Largest (starting point) */

@media (min-width: 1920px) {


 .new_arrivals_page_container {
    margin: 0px auto 0px auto;
    padding: 0;
    background-color: #000000;
    color: #ffffff; /* Changed to white */
	max-width: 1920px;
	height: auto;
		border: 5px solid #000000;
	}




header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding: 0px 0px 0px 0px;
	height: auto;
}

	
	
.hero h1 {
    font-size: 75px;
    line-height:75px;
    margin: 10px 0px 20px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 6px 6px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
	padding: 0px 0px 0px 0px;
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    overflow: hidden;
	margin: 0px 0px 0px 0px;
	height: auto;
	

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
	margin: 0px 0px 0px 0px;
   
}

.hero-content h1 {
    font-size: 50px;
    font-family: 'Monday Rain';
    line-height: 40px;
    margin: 20px 5px 10px 5px;
    text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}


.hero-content p {
    font-size: 30px;
    font-family: 'Noteworthy-Bold';
    line-height: 35px;
    margin: 0px 5px 40px 5px;
}

	
	.featured-products {
        padding: 20px;
        text-align: center;
    }

    .featured-products h2 {
        font-size: 35px; /* Slightly larger heading for larger screens */
        margin: 0px 0px 10px 0px;
    }

    .product-grid {
        display: flex; /* Use flexbox for layout */
        flex-wrap: wrap; /* Allow wrapping to next line if needed */
        justify-content: center; /* Center items horizontally */
        gap: 100px; /* Space between items */
		margin-bottom: 50px;
    }

    .product-item {
        background-color: #333;
        border: 1px solid #ffffff;
        border-radius: 10px;
        padding: 20px;
        width: calc(25% - 30px); /* 4 items per row with 30px gap */
        max-width: 500px; /* Max width to maintain consistency */
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-item img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

    .product-item h3 {
        font-size: 28px;
        margin: 10px 0;
        color: #ffffff;
    }

    .product-item p {
        font-size: 18px;
        color: #ccc;
    }

    .product-item span {
        font-size: 22px;
        color: #ff6f61;
        display: block;
        margin-top: 10px;
    }

    .product-item a {
        margin-top: 15px;
        display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }


}




@media (max-width: 1920px) {

	
    .hero-content p {
        font-size: 20px;
        margin: 10px 100px;
    }

    .featured-products h2 {
        font-size: 40px;
    }

    .product-item {
        width: 100%;
    }

    .product-item img {
        max-width: 150px;
    }



header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding: 0px 0px 0px 0px;
}

	
	
.hero h1 {
    font-size: 75px;
    line-height: 75px;
    margin: 10px 0px 20px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 5px 5px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
	margin: 0px 0px 0px 0px;

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	height: auto;
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
   
}

.hero-content h1 {
    font-size: 40px;
    font-family: 'Monday Rain';
    line-height: 40px;
    margin: 10px 5px 10px 5px;
    text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}

.hero-content p {
    font-size: 30px;
    font-family: 'Noteworthy-Bold';
    line-height: 35px;
    margin: 0px 5px 40px 5px;
}

	
	.featured-products {
        padding: 20px;
        text-align: center;
    }

    .featured-products h2 {
        font-size: 50px; /* Slightly larger heading for larger screens */
        margin: 0px 0px 30px 0px;
    }

    .product-grid {
        display: flex; /* Use flexbox for layout */
        flex-wrap: wrap; /* Allow wrapping to next line if needed */
        justify-content: center; /* Center items horizontally */
        gap: 100px; /* Space between items */
		margin-bottom: 50px;
    }

    .product-item {
        background-color: #333;
        border: 1px solid #ffffff;
        border-radius: 10px;
        padding: 20px;
        width: calc(25% - 30px); /* 4 items per row with 30px gap */
        max-width: 500px; /* Max width to maintain consistency */
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-item img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

    .product-item h3 {
        font-size: 28px;
        margin: 10px 0;
        color: #ffffff;
    }

    .product-item p {
        font-size: 18px;
        color: #ccc;
    }

    .product-item span {
        font-size: 22px;
        color: #ff6f61;
        display: block;
        margin-top: 10px;
    }

    .product-item a {
        margin-top: 15px;
        display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }


}





/* Medium screens */
@media (max-width: 1200px) {
 .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 20px;
        margin: 10px 100px;
    }

    .featured-products h2 {
        font-size: 40px;
    }

    .product-item {
        width: 100%;
    }

    .product-item img {
        max-width: 150px;
    }



header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding-bottom: 10px;
	padding: 0px 0px 0px 0px;
}

	
	
.hero h1 {
    font-size: 45px;
    line-height: 45px;
    margin: 10px 0px 10px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
	margin: 0px 0px 0px 0px;

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	height: auto;
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
   
}

.hero-content h1 {
    font-size: 35px;
    font-family: 'Monday Rain';
    line-height: 35px;
      margin: 5px 5px 5px 5px;
  text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}

.hero-content p {
      font-size: 25px;
  font-family: 'Noteworthy-Bold';
    line-height: 25px;
    margin: 0px 5px 40px 5px;
}

	.featured-products {
    padding: 0px 20px 50px 20px;
    text-align: center;
		margin: 0px auto 0px auto;
		width: 450px;
}

	
.featured-products h2 {
    font-size: 25px;
    font-family: 'Noteworthy-Bold';
    line-height: 20px;
    margin: 0px 0px 20px 0px;
}

}



	
	
	
	
	
	
	

/* Small screens */
@media (max-width: 768px) {
  
    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 20px;
        margin: 10px 100px;
    }

    .featured-products h2 {
        font-size: 40px;
    }

    .product-item {
        width: 100%;
    }

    .product-item img {
        max-width: 150px;
    }



header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding-bottom: 10px;
	padding: 0px 0px 0px 0px;
}

	
	
.hero h1 {
    font-size: 45px;
    line-height: 50px;
    margin: 10px 0px 10px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
	margin: 0px 0px 0px 0px;

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	height: auto;
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
   
}

.hero-content h1 {
    font-size: 28px;
    font-family: 'Monday Rain';
    line-height: 30px;
    margin: 5px 5px 0px 5px;
    text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}

.hero-content p {
    font-size: 20px;
    font-family: 'Noteworthy-Bold';
    line-height: 25px;
    margin: 0px 5px 40px 5px;
}

	.featured-products {
    padding: 0px 20px 50px 20px;
    text-align: center;
		margin: 0px auto 0px auto;
		width: 450px;
}

	
.featured-products h2 {
    font-size: 20px;
    font-family: 'Noteworthy-Bold';
    line-height: 30px;
    margin: 0px 0px 10px 0px;
}

}










/* Extra small screens */
@media (max-width: 480px) {
	
header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding-bottom: 10px;
	padding: 0px 0px 0px 0px;
}

	
	
.hero h1 {
    font-size: 35px;
    line-height: 40px;
    margin: 10px 0px 5px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
	margin: 0px 0px 0px 0px;

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	height: auto;
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
   
}

.hero-content h1 {
    font-size: 28px;
    font-family: 'Monday Rain';
    line-height: 28px;
    margin: 15px 35px 0px 35px;
    text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}

.hero-content p {
    font-size: 20px;
    font-family: 'Noteworthy-Bold';
    line-height: 25px;
    margin: 0px 50px 40px 50px;
}

	.featured-products {
    padding: 0px 20px 50px 20px;
    text-align: center;
		margin: 0px auto 0px auto;
		max-width: 280px;
}

	
.featured-products h2 {
    font-size: 20px;
    font-family: 'Noteworthy-Bold';
    line-height: 30px;
    margin: 0px 0px 10px 0px;
}

}

















/* XXSmall screens */
@media (max-width: 300px) {
	
header {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

	
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
	padding: 0px 0px 10px 0px;
}

	
	
.hero h1 {
    font-size: 25px;
    line-height: 30px;
    margin: 10px 0px 5px 0px;
    font-family: 'Monday Rain';
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px rgba(0,122,255,1.00); /* Adds shadow for better text visibility */
}

	
	/* Hero Image */
.hero-image {
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
	margin: 0px 0px 0px 0px;

	

}

.hero-image picture,
.hero-image img {
    width: 100%;
	height: auto;
    object-fit: cover; /* Ensures images cover the entire container */
    object-position: center;
	margin: 0px auto 0px auto;
	
}

.hero-content {
    text-align: center;
   
}

.hero-content h1 {
    font-size: 22px;
    font-family: 'Monday Rain';
    line-height: 25px;
    margin: 0px 0px 0px 0px;
    text-shadow: 2px 2px rgba(0, 122, 255, 1.00);
   
}

.hero-content p {
    font-size: 14px;
    font-family: 'Noteworthy-Bold';
    line-height: 20px;
    margin: 0px 5px 40px 5px;
}

.featured-products {
    padding: 0px 20px 50px 20px;
    text-align: center;
	margin: 0px 0px 0px 0px;
	max-width: 250px;
}

	
.featured-products h2 {
    font-size: 16px;
    font-family: 'Noteworthy-Bold';
    line-height: 30px;
    margin: 0px 0px 0px 0px;
}

}
