/* Reset default margin & padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Body styling */
body {
  background-color: #fdfcf7; /* soft off-white background */
  color: #333;
  line-height: 1.6;
}

/* Header styling */
#header, #header-down {
  background-color: saddlebrown; /* woodlike color */
  color: white;
  text-align: center;
  padding: 20px;
}

#header img, #header-down img {
  display: block;
  margin: 0 auto 10px auto;
  width: 80px; /* adjust logo size */
  height: auto;
}

#header h1, #header-down h1 {
  font-size: 28px;
  letter-spacing: 2px;
}

/* Navigation tabs */
#tabs-top {
  display: flex;
  justify-content: center;
  background-color: peru; /* lighter wood color */
  padding: 10px 0;
}

#tabs-top a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

#tabs-top a:hover {
  color: yellow;
}

/* Content area */
#content {
  padding: 20px;
}

#content h2 {
  margin: 20px 0 10px;
  color: saddlebrown;
  border-bottom: 2px solid peru;
  display: inline-block;
  padding-bottom: 5px;
}

/* Info box cards */
.info-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Info box images */
.info-box img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin-right: 15px;
}

.info-box img.right {
  margin-left: auto;
  height: 20px;
  width: 20px;
}

/* Headings inside info-box */
.info-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: saddlebrown;
}

.info-box p {
  font-size: 14px;
  color: #555;
}
/* Adidas Discount Section */
#home-comtent {
  max-width: 900px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#home-comtent:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Adidas logo and heading */
#home-comtent .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

#home-comtent .logo img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

#home-comtent .logo h2 {
  font-size: 24px;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Product image */
#home-comtent > img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  margin: 15px 0;
}

/* Discount paragraph */
#home-comtent p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #0077b6; /* Adidas highlight color */
  border-radius: 8px;
}

#home-comtent p strong {
  color: #d62828; /* strong red for discount */
  font-size: 18px;
}

#home-comtent p em {
  color: #0077b6; /* highlight product types in blue */
  font-style: normal;
  font-weight: bold;
}

/*====FOR ALL IMAGES======*/
img {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
} 
/* container */
#listofshops {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* headings */
#listofshops h2 {
  font-size: 22px;
  color: #2c3e50;
  border-left: 5px solid #27ae60;
  padding-left: 10px;
  margin: 30px 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* each shop row (flex row) */
#listofshops .info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* hover */
#listofshops .info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* left side: text then logo (keeps them inline) */
#listofshops .store-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;                 /* takes available space so arrow stays on the right */
  min-width: 0;           /* allow text to truncate if needed */
}

/* TEXT block (store name + description) */
#listofshops .store-left .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;                /* ensure text is first */
  min-width: 0;           /* important for truncation */
}

/* logo AFTER the text */
#listofshops .store-left .store-logo {
  order: 2;                /* ensure logo comes after text */
  height: 48px;
  width: auto;
  border-radius: 6px;
  flex-shrink: 0;          /* prevent logo from shrinking */
}

/* right arrow stays to the far right */
#listofshops .info-box .right {
  order: 3;
  height: 22px;
  margin-left: 12px;
  opacity: 0.85;
  flex-shrink: 0;
}

/* name + description styles */
#listofshops .store-left h3 {
  font-size: 18px;
  color: #222;
  margin: 0;
  white-space: nowrap;    /* keep name on one line */
  overflow: hidden;
  text-overflow: ellipsis;
}

#listofshops .store-left p {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive: allow description to wrap on small screens */
@media (max-width: 600px) {
  #listofshops .store-left {
    gap: 8px;
  }
  #listofshops .store-left .text p {
    white-space: normal;
  }
  #listofshops .store-left h3 {
    white-space: normal;
  }
}

/* Contact Form Styling */
#form {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
}

#form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
    font-size: 26px;
    letter-spacing: 1px;
}

#form h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
    font-size: 20px;
    border-left: 4px solid #0077cc;
    padding-left: 8px;
}

#form p {
    margin: 8px 0;
    font-size: 15px;
    color: #555;
}

/* Input Fields */
#form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
    color: #333;
}

#form input, 
#form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Hover & Focus Effect */
#form input:focus,
#form textarea:focus {
    border-color: #0077cc;
    box-shadow: 0 0 6px rgba(0, 119, 204, 0.3);
    outline: none;
}

/* Textarea */
#form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
#submit {
    margin-top: 20px;
    text-align: center;
}

#submit p {
    display: inline-block;
    background: #0077cc;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#submit p:hover {
    background: #005fa3;
    transform: scale(1.05);
}

/*====ADJUST IMAGES====*/
.movie-card img {
  width: 600px;
  height: 300px; 
  object-fit: cover; 
}
