/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
logo {
  text-align:center;
}
body {
    font-family: Arial, sans-serif;
    
    background-color: #8B0000;
}

/* Color Palette */
:root {
    --light-blue: #A8D8FF;
    --peach: #FFCC99;
    --dark-red: #8B0000;
}




nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-red);
    font-weight: bold;
    font-size: 18px;
}

nav ul li a:hover {
    color: var(--peach);
}


.hero {
  background-image: url("dots.jpg"); /* replace with your file name */
  background-size: cover;     /* makes the image fill the section */
  background-position: center;
  background-repeat: no-repeat;
  color: white;               /* text stays readable */
  padding: 80px 20px;         /* space around text */
  text-align: center;
  min-height: 100vh;          /* make it fill full screen height */
  display: flex;              /* center content vertically */
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 600px;           /* keeps text from stretching too wide */
}


.hero .hero-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero .hero-content p {
    font-size: 30px;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 10px 30px;
    
    color: black;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    
}

/* Products Section */
.products {
    background-image: url("dots.jpg");
    background-size: cover;        /* fills the section */
    background-position: center;   /* keeps it centered */
    background-repeat: no-repeat;  /* stops tiling */
    text-align: center;
    padding: 60px 20px;
    color: white;      
      min-height: 100vh;/* makes text readable */
  background: transparent;
}


.hero-content {
  max-width: 700px;   
  color:black;          /* keeps text readable */
}


.products h2 {
    font-size: 32px;
    
    margin-bottom: 40px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-item img {
    
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item img:hover {
    transform: scale(1.05);
}

.product-item h3 {
    margin: 15px 0;
  
    font-size: 22px;
}

.product-item p {
    color: #555;
    font-size: 16px;
}

/* About Section */
.about {
    background-color: var(--light-blue);
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: var(--dark-red);
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Section */
footer {
    background-color: var(--dark-red);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-size: 16px;
    margin-bottom: 10px;
}

footer .social-links {
    list-style: none;
    padding: 0;
}

footer .social-links li {
    display: inline;
    margin: 0 10px;
}

footer .social-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

footer .social-links li a:hover {
    color: var(--peach);
}
.header{ background-color: var(--light-blue);
}
