body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .navbar {
    height: 50px; /* Fixed navbar height */
    display: flex;
    border: 1px black;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent content from overflowing */
    background-color: #fff; /* or your nav background */
    padding: 0 20px;
  }

  .curtain-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    color: white;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: left;
    justify-content: left;
    z-index: 999;
  }
  
  .curtain-menu a {
    color: black;
    font-size: 24px;
    border: 1px solid black;
    text-decoration: none;
    margin: 0;
  }
  
  .nav-left,
  .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .nav-left {
    justify-content: flex-start;
  }
  
  .nav-center {
    flex: 1;
    text-align: center;
  }
  
  .nav-right {
    justify-content: flex-end;
    gap: 10px;
  }
  
  .hamburger {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: black;
    opacity: 1;
    transition: opacity 0.4s ease;
    display: inline-block;
  }
  
  .logo {
    font-size: 24px;
    transition: opacity 0.3s ease;
  }
 
  .logo {
    max-height: 100px; /* Try increasing this to make it bigger */
    height: auto;
    width: auto;
    object-fit: contain;
  }
 
li a {
  display: block;
  color: red;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
 
li a:hover {
  background-color: #111;
}
 
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 10px;
  border: 1px solid black;
  padding: 5px;
}

.product {
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid black;
  object-fit: cover;
}

.product-name {
  background-color: yellow;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid black;
  font-size: 14px;
  text-decoration: none;
  color: black;
}
  
  .product-item button:hover {
    background-color: yellow;
  }
  
  @media (max-width: 1200px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: 1fr; /* 1 column on mobile screens */
    }
  }
  .custom-footer {
    background-color: #fff; 
    border: #000;      
    padding: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
 
  .desc {
    background-color: lightblue;
  }

  body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
  }
  
  .contact-container {
    max-width: 600px;
    border: 1px solid black;
    margin: 60px auto;
    background: white;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
  }
  
  .contact-container h1 {
    margin-bottom: 20px;
    font-size: 32px;
  }
  
  .contact-container p {
    margin-bottom: 30px;
    border: 1px black;
    color: #555;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 6px;
    border: 1px black;
    font-weight: bold;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  .contact-form button {
    padding: 12px 24px;
    background-color: black;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #333;
  }

  /* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Reset + base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Reset + base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Reset + base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Hero Section Layout */
.hero {
  display: flex;
  height: 100vh; /* Full height of the viewport */
  width: 100%;
}

/* Left side with image */
.hero-left {
  flex: 1; /* Takes up 50% of the space */
  display: flex;
  border: 1px solid black;
  align-items: center; /* Center image vertically */
  justify-content: center; /* Center image horizontally */
  overflow: hidden; /* Hide any overflow from the image */
}

.hero-left img {
  width: 100%; /* Ensure image scales to fit the parent width */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure image fits nicely without stretching */
  max-height: 90%; /* Limit the height to prevent stretching */
}

/* Right side with content */
.hero-right {
  flex: 1; /* Takes up the other 50% */
  padding: 3rem;
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: white;
}

.hero-right h2.top-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: black; /* Optional: change color */
  font-weight: bold;
  text-align: left;
}

.hero-right h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-group .button {
  background-color: white; /* Green */
  border: 1px solid black;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  float: left;
}

.btn-group .button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

.btn-group .button:hover {
  background-color: yellow;
}

.hero-right p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

/* Call-to-Action Button */
.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  border: 1px solid black;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.cta-button:hover {
  background-color: yellow;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-left, .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-left img {
    max-height: 300px;
  }

  .hero-right {
    padding: 2rem;
    text-align: center;
  }

  .hero-right h2.top-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
}

body {
  font-family: Arial;
  font-size: 17px;
  padding: 8px;
}

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid black;
}

input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
}

label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: black;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: YE;
}

a {
  color: #2196F3;
}

hr {
  border: 1px solid lightgrey;
}

span.price {
  float: right;
  color: grey;
}

.logo img {
  height: 40px; /* Adjust as needed */
  object-fit: contain;
}

.features li {
  text-decoration: underline;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25 {
    margin-bottom: 20px;
  }

}

