/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ff5703;
  color: #333;
  font-family: Arial, sans-serif;
}

/* Header */
header {
  
  color: rgb(254, 254, 254);
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 24px;
}

header nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  color: rgb(0, 0, 0);
  padding: 200px 400px;

  background: none;   /* removes any background color or image */
  border: none;       /* removes any border */
  box-shadow: none;   /* removes any shadow effect if there was one */
}


.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero .btn {
  background: white;
  color: #2563eb;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}



/* Product Section */
#products {
  padding: 80px 10%;
  text-align: center;
}
#products h3 {
  font-size: 40px;        /* change size */
  color: white;           /* change color */
  text-align: center;     /* center it */
  margin-bottom: 40px;    /* space below */
  border: 3px solid white;/* optional frame/border */
  display: inline-block;  /* makes border fit around text */
  padding: 10px 20px;     /* space inside frame */
  border-radius: 12px;    /* rounded corners */
  background: rgba(0, 0, 0, 0.4); /* optional background behind text */
}




.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
 
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.product-card img {
  width: 200%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}







.product-card button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.product-card button:hover {
  background-color: #1e40af;
}

/* Product Grid Layout */
.product-grid {
  display: flex;
  flex-wrap: wrap;             /* allows next-line wrapping */
  justify-content: center;     /* centers products horizontally */
  gap: 30px;                   /* space between products */
  padding: 40px 0;
}

/* Each Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.1); /* light transparent background */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  width: 500px;                /* card width */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-50px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Product Name */
.product-card h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

/* Price Text */
.product-card span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff; /* gold color for price */
  margin-bottom: 10px;
}

/* Buy Now Button */
.product-card button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.product-card button:hover {
  background-color: #1e40af;
}


/* Footer */
footer {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 500px;
}

body {
    background-image: url('product4.jpg');
  background-size: cover;         /* makes the image fill the screen */
  background-position: center;    /* centers the image */
  background-attachment: fixed;   /* makes it stay still when scrolling */
  background-repeat: no-repeat;   /* prevents it from repeating */
  color: white;                   /* makes text readable if image is dark */
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4; /* light gray background */
  /* Or use an image instead: */
  /* background-image: url('background.jpg'); */
  /* background-size: cover;
  background-position: center;
  background-attachment: fixed; */
  margin: 0;
  font-family: Arial, sans-serif;
}
/* Contact Section */
.contact-section {
  text-align: center;
  padding: 80px 50px;
  color: white;
  background: url('product.jpg') no-repeat center center/cover; /* background image */
}

/* Section title */
.contact-section h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Contact list container */
.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* space between each platform */
}

/* Each contact item */
.contact-item {
  background: rgba(0,0,0,0.5);
  padding: 20px 30px;
  border-radius: 12px;
  width: 200px;
  text-align: center;
}

/* Platform name */
.contact-item h3 {
  font-size: 24px;
  margin: 10px 0;
  color: #ffffff;
}

/* Contact info text */
.contact-text {
  font-size: 18px;
  color: #ffffff;  /* can customize for each platform */
  margin-top: 5px;
  word-wrap: break-word;
}

/* Social media icon */
.social-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

/* Links inside contact-text */
.contact-text a {
  color: #ffffff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}



