html, body, div, h3, h4, h5, h6,
p, blockquote, pre, a, span, em, strong,
ul, ol, li, table, th, td, input, textarea, button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #f5f1e9, #e9e4d8);
    color: #3d2b1f;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: center;
    transition: background 0.5s ease;
  }

    h1, h2 {
      text-align: center;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
  
  .container {
    width: 80%;
    margin: 0 auto;
    background-color: #fffaf0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  header {
    background: linear-gradient(135deg, #8b5e3c, #a8764f);
    color: #f5f1e9;
    padding: 25px 15px;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 5px solid #5a3e36;
    letter-spacing: 1px;
  }
  
  
  nav {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
  }
  
  nav a {
    text-decoration: none;
    color: #5a3e36;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
  }
  
  nav a:hover {
    color: #2e1706;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  ul {
    text-align: center;
    list-style-position: inside;
  }
  
  section {
    margin-bottom: 20px;
    padding: 15px;
    background: #fffaf0;
    border-left: 5px solid #8b5e3c;
    text-align: center;
  }
  
  
  
  a {
    text-decoration: none;
    font-weight: bold;
    color: #5a3e36;
  }

  a :hover {
    color: #c86118
  }

  ul :hover {
    color: #c86118;
  }
  
  table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
  }
  
  table th, table td {
    border: 1px solid #8b5e3c;
    padding: 10px;
    text-align: center;
  }
  
  table th {
    background-color: #8b5e3c;
    color: #f5f1e9;
  }
  
  table tr:nth-child(even) {
    background-color: #f5f1e9;
  }
  
  button, .button, input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: block;
    margin: 10px auto;
    text-decoration: none;
  }
  
  button:hover,
  .button:hover,
  input[type="submit"]:hover {
    background-color: #388e3c;
  }
  
  input, textarea {
    box-sizing: border-box;
    width: 80%;
    padding: 10px;
    margin: 5px auto;
    border: none;
    border-radius: 5px;
    display: block;
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background-color: #8b5e3c;
    color: #f5f1e9;
    margin-top: 20px;
  }
  
  @media screen and (min-width: 370px) and (max-width: 600px) {
    main {
      width: 95%;
    }
  }
  
  @media screen and (max-width: 1400px) {
    #colorbox {
      background-color: #d3c1a5;
    }
  }
  
  .cta {
    background-color: #f0fdf4;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
  }
  
  .hero {
    background-color: #e8f5e9;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  .quick-links {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  

  
  .card {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .card:hover {
    background-color: #dcedc8;
  }
  
  
  .testimonials blockquote {
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #4CAF50;
    color: #555;
  }
  
 
  section ol {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-position: inside;
    padding-left: 0;
  }
  
  section ol li {
    text-align: center;
    margin-bottom: 15px;
    max-width: 600px;
  }
  
  .image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
  }
  
  .image-row img {
    width: 30%;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  @media screen and (min-width: 981px) and (max-width: 1400px) {
    #colorbox {
        background-color: #d3c1a5;
    }
}

@media screen and (min-width: 601px) and (max-width: 980px) {
    #colorbox {
        background-color: #d3c1a5;
    }
}

@media screen and (min-width: 370px) and (max-width: 600px) {
    #colorbox {
        background-color: #d3c1a5;
    }
    main {
        width: 95%;
    }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-heading {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 10px;
}

.gallery-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #f9f9f9;
  cursor: pointer;
  animation: fadeIn 0.8s ease both;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 10px;
  font-size: 0.9em;
  text-align: center;
  color: #333;
}

#gallerySearch {
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: border 0.3s ease;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
  box-sizing: border-box;
}

#gallerySearch:focus {
  border-color: #4CAF50;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fffaf0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.founder-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.founder-hero img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-text {
  max-width: 500px;
  text-align: left;
}

 .founder-h2 {
  font-size: 28px;
  color: #8b5e3c;
  margin-bottom: 10px;
}

.founder-text p {
  font-size: 1.1rem;
  color: #4a3a2a;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .founder-hero {
    flex-direction: column;
    text-align: center;
  }

  .founder-text {
    text-align: center;
  }

  .holly-img {
    width: 300px;
    height: auto; 
    max-height: 533px;
  }
}

.links-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.link-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.link-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.link-card a {
  display: block;
  padding: 10px;
  color: #2e1706;
  text-decoration: none;
  font-weight: bold;
}

.link-card a:hover {
  color: #1abc9c;
}

.link-heading {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 10px;
}

.brand-search:focus {
  max-width: 400px;
  padding: 0.6em 1em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fade {
  opacity: 0;
  transition: opacity 0.65s ease-in-out;
}

.loaded {
  opacity: 1;
}