import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




{
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: white;
  color: black;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: black;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 50px;
  background-color: #f0f0f0;
}

.hero img {
  max-width: 950px;
  margin-bottom: 8px;
}

.hero button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 80%;
  margin:120px;
  border: 2px solid ligth grey;
  border-radius: 8px
}

.collection {
  text-align: center;
}

.collection img {
  width: 80%;
}


.collection2
{
	padding:20px;
	letter-spacing:3px;
	margin-left:150px;
	font-size:50px;
	font-family:"Poppins", sans-serif;
}

.new-launches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	padding:20px;
}

.h2
{
	font-family:"Poppins", sans-serif;
	padding:20px;
	letter-spacing:3px;
	margin-left:150px;
	font-size:50px;
}
.product {
    text-align: center;
	
}

.product img {
    width: 50%;
    height: auto;
}

.product h3 {
    margin: 10px 0;
}

.product p {
    margin: 5px 0;
}

.product .price {
    font-weight: bold;
    color: #ff0000; 
}

.product button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


.product2 {
    text-align: center;
}

.product2 img {
    width: 50%;
    height: auto;
}

.product2 h3 {
    margin: 10px 0;
}

.product2 p {
    margin: 5px 0;
}

.product2 .price {
    font-weight: bold;
    color: #ff0000;
}

.product2 button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.product3 {
    text-align: center;
}

.product3 img {
    width: 50%;
    height: auto;
}

.product3 h3 {
    margin: 10px 0;
}

.product3 p {
    margin: 5px 0;
}

.product3 .price {
    font-weight: bold;
    color: #ff0000; 
}

.product3 button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


.product4 {
    text-align: center;
}

.product4 img {
    width: 50%;
    height: auto;
}

.product4 h3 {
    margin: 10px 0;
}

.product4 p {
    margin: 5px 0;
}

.product4 .price {
    font-weight: bold;
    color: #ff0000; 
}

.product4 button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}



.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.stat {
    text-align: center;
}

.stat img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
	font-family:"Poppins", sans-serif;
}


.experience-pebble {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0; 
}

.experience-item {
    text-align: center;
}

.experience-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.experience-item p {
    font-size: 14px;
}


.official-partners {
    text-align: center;
    margin: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.partner-logos img {
    width: 100px;
    height: auto;
}

.in-the-press {
  text-align: center;
  margin: 20px;
}

.press-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.press-logos img {
  width: 150px; 
}


.dropdown {
    display: none;
    position: absolute;
    background-color: navy blue;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown   
 li {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

nav li:hover .dropdown {
    display: block;
}

footer {
    background-color: #f0f0f0;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;   

}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section   
 form {
    display: flex;
    flex-direction: column;
}

.footer-section form input {
    padding: 10px;
    border: 1px solid #ccc;
}

.footer-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}