* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f8f8f8;
  color: #111;
  line-height: 1.6;
}

#wrapper {
  max-width: 1100px;
  margin: 2.5rem auto;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border: 1px solid #e6e6e6;
}

/* HEADER */
header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 2.8rem;
}

header h1 {
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.2rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #000;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* home */

.home h2 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.home p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
  font-size: 1rem;
  text-align: center;
}
/* about */
.aboutus{
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 2rem 1rem;
}
.aboutus2{
  font-size: 2rem;
  margin-bottom: 3.5rem;
  padding: 2rem 1rem;
}
/* BRAND PAGE LAYOUT */
.brand-layout {
  display: flex;
  margin: 20px;
}

/* LEFT SIDEBAR */
.brand-sidebar {
  width: 200px;
  padding: 15px;
  border-right: 1px solid #ccc;
}

.brand-sidebar h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 16px;
}

.brand-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.brand-sidebar li {
  margin-bottom: 10px;
}

.brand-sidebar a {
  color: black;
  text-decoration: none;
}

.brand-sidebar a:hover {
  text-decoration: underline;
}

/* RIGHT CONTENT */
.brand-content {
  padding: 20px;
  margin-left: 20px;
  flex: 1;
}

.brand-content h2 {
  margin-bottom: 10px;
}

.brand-content p {
  line-height: 1.6;
}
.brand-row{
  display: flex;
  gap: 15px;
 margin-top: 10px;
}
.brand-row a{
  flex: 1;
}
.brand-row img{
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}
.brand-row img:hover{
  transform: scale(1.05);
  opacity: 0.85;
  filter: brightness(1.15);
  box-shadow: 0.8px 18px rgba(red, green, blue, alpha);
}
/*brand  logo*/
.brand-photo {
  display: block;
  max-width: 260px;
  margin: 20px auto;  
  border-radius: 8px; 
}
.product-title{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: #222;
}
/*products page*/
.products-content{
  padding: 20px;
}
.products-row{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  padding:10px 0;
}
.products-card{
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products-card img{
width: 100%;
height: 260px;
object-fit: contain;
border-radius: 10px;
transition: transform 0.3s ease;
display: block;
margin: 0 auto;
}
.products-card h3{
  margin-top: 10px;
  font-size: 0.95rem;
  color:#333;
  min-height: 2.5rem;
}
/* BRANDS SECTION */
.brands {
  margin-top: 3rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 2.8rem;
}

.brands h2 {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.brands > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.3rem auto;
  color: #555;
  font-size: 0.98rem;
  text-align: center;
}

.brand-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.brand-card {
  flex: 1;
  min-width: 270px;
  border: 1px solid #e4e4e4;
  background: #fafafa;
  padding: 1.8rem;
  transition:  0.25s;
  text-align: center;
}

.brand-card:hover {
  background: #f2f2f2;
}

.brand-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-align: center;
}

.brand-card p {
  color: #444;
  margin-bottom: 1.3rem;
  text-align: center;
}

.brand-card a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid #000;
  padding-bottom: 0.15rem;
  text-align: center;
}

.brand-card a:hover {
  opacity: 0.7;
  text-align: center;
}
/*contact page*/
.contact{
  margin: 20px;
  padding: 15px;
}
.contact h2{
  font-size: 48px;
  margin-bottom: 15px;
}
.contact label{
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.contact input,
.contact textarea {
  width: 90%;
  padding: 8px;
  border: 1px solid #999;
  margin-top: 5px;
}
#submit {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
}
.thankyou{
  text-align: center;
}
.thankyou h2{
  font-size: 36px;
}
.thankyou p{
color: #444;
}
/* CTA */
.cta {
  text-align: center;
  border-top: 1px solid #f0f0f0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
}


/* FOOTER */
footer {
  border-top: 1px solid #e6e6e6;
  margin-top: 3.8rem;
  padding-top: 1.6rem;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  #wrapper {
    padding: 1.8rem;
    margin: 0;
    border: none;
  }
}
@media (max-width: 500px) {
  header h1 {
    font-size: 1.45rem;
  }
  .home h2 {
    font-size: 1.65rem;
  }
}