/* FILEPATH: /c:/Users/New User/Documents/smithwork/smith_work_ws/static/style.css */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    text-align: right;
}

/* Navbar section */
.navbar {
    position: sticky;
    top: 10%;
    z-index: 10;
    background: linear-gradient(to right, #f7f4ec , #f7e8bf);
    text-align: center;
}

 .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
}

.navbar-toggler {
    background-color: #000; /* black for drama */
    border: none;
    padding: 16px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbar-toggler:hover {
    background-color: #444;
    transform: scale(1.1); /* little bounce on hover */
}


.navbar-toggler-icon {
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

@media (max-width: 768px) {
    .navbar-toggler {
        animation: throb 2s infinite ease-in-out;
    }
}

@keyframes throb {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* Drop-down background and spacing */
.navbar-collapse {
    display: none;
    background-color: #fcf3cf ; /* Creamy background */
    padding: 15px 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.navbar-nav .nav-item {
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}


/* Make nav links touch-friendly and clear */
.navbar-nav .nav-link {
    color: #05384D;
    font-size: 20px;
    padding: 14px 12px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

/* Highlight active page */
.navbar-nav .nav-link.active {
    font-weight: bold;
    background-color: #e6f2f2;
    border-radius: 6px;
}


.show {
    display: block !important;
}

/* Banner section */
#banner {
    background: linear-gradient(to right, #f7f4ec , #f7e8bf);
    color: #000;
    padding-top: 1px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.banner_row {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;


}

/*.promo-title {
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    margin-right: 90%;
    margin-top: 0px;
    margin-bottom: 0px;

}

.strap-line {
    font-size: 15px;
    color: #fff;
    margin-right: 90%;
    margin-top: 0px;
}*/

.img_banner {
    animation: bannerFadeIn 1.2s ease-out;
    width: 40%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}


@keyframes bannerFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .img_banner {
        width: 90%;
        max-width: none;
    }
}



.half-width {
    width: 50%;
}

/* About section 
.bottom-img {
    width: 100%;
}*/

.about {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: none;
    font-size: 20px;
    ;
}

.etsy-button {
    display: inline-block;
    background-color: #b87333; /* Copper */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 6px;
    border: 2px solid #b87333;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    margin-right: 45%;
}

.etsy-button:hover {
    background-color: white;
    color: #b87333;
}


/* Generic layout helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* KEY: allows boxes to be different heights */
  }
  
  .half-width {
    flex: 0 0 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .third-width {
    flex: 1 1 300px;
    max-width: 33.3333%;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fffaf5; /* light, warm base */
    border: 1px solid #b87333; /* copper tone */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3); /* soft copper glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.third-width:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(184, 115, 51, 0.45);
}

@media (max-width: 768px) {
    .third-width:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3); /* subtle, static */
    }

    .products-img {
        cursor: default;
    }
}

  .products-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
      align-items: stretch;
    }
  
    .third-width {
      flex: 1 1 100%;
      max-width: 100%;
      margin: 10px 0;
    }
  
    .third-width:hover {
      transform: none;
      box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
    }
  
    .products-img {
      max-width: 100%;
      height: auto;
    }
  }
  
  .expand-btn {
    background-color: #b87333;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.expand-btn:hover {
    background-color: #9a5e28;
}

.full-description {
    max-height: 0;
    overflow: auto;
    transition: max-height 0.6s ease;
}
.full-description.open {
    max-height: 300px; /* adjust to suit content */
}

.full-description::-webkit-scrollbar {
    width: 8px;
}

.full-description::-webkit-scrollbar-thumb {
    background-color: #b87333;
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}




.img-logo2 {
    width: 10%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 0px;
    margin-left: 0%;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border: 4px solid #b87333;
    border-radius: 10px;
    box-shadow: 0 0 20px #b87333;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* Product section */
#products {
    padding-top: 20px;
    padding-bottom: 0px;
    border-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

.products-img {
    width: 100%; /* fills the column naturally */
    height: auto; /* maintains image ratio */
    display: block; /* not flex, to avoid layout quirks */
    margin: 0 auto 20px;
    border-radius: 0; /* removes rounded corners */
    box-sizing: border-box;
    padding-bottom: 0;
    }

.section-title {
    padding-top: 34px;
    padding-bottom: 0px;
    border-top: none;
    text-align: center;
}

#products h2 {
    margin-bottom: 15px;
    font-size: 25px;
    text-transform: uppercase;
}

#products p {
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

/* footer section */

#footer {
    background: linear-gradient(to right, #f7f4ec , #f7e8bf);
    color: #181616;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
    
}
#footer h2 {
    margin-bottom: 15px;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
}
#footer p {
    margin-bottom: 20px;
    font-size: 15px;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

/*.footer-img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0%;
}*/
.widget-container {
    transform: scale(0.7);
}
.contact-link-button {
    

    

    background-color: #05384D;
    color: #fff;
    border: none;
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0%;
    margin-right: 0%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    padding-bottom: 20px;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: hidden;
    }
.form-container {
    margin-bottom: 20px;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    
    
}
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    line-height: 1.6;
    color: #333;
  }
  .blog-container img {
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
  }
  
  .blog-post img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #b87333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #9a5e28;
}

.copper-btn {
    background-color: #b87333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block; /* or block if you want full-width on mobile */
    margin-top: 10px;       /* push it away from the paragraph */
    text-decoration: none;  /* remove underline if it's an <a> */
}


.copper-btn:hover {
    background-color: #9a5e28;
}

.cart-summary {
    margin-right: 15%;
 

}

.blog-thumb {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.blog-snippet {
    margin-bottom: 30px;
}



.extra-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}


.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .gallery-thumb {
    width: 180px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  
  .gallery-thumb:hover {
    transform: scale(1.05);
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
  }
  
  .modal-caption {
    text-align: center;
    color: #ccc;
    margin-top: 10px;
    font-style: italic;
  }
  
  .modal-close,
  .modal-nav {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
  }
  
  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 40px;
  }
  
  .modal-nav {
    padding: 10px;
  }
  
  #prevImage {
    left: 20px;
  }
  
  #nextImage {
    right: 20px;
  }
  
  .modal-close:hover,
  .modal-nav:hover {
    color: #b87333;
  }
  
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: #fffaf5;
    border: 1px solid #e0d4c2;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
}

.testimonial img {
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.testimonial p {
    margin: 0.5rem 0;
    text-align: center;
}

.home-testimonials {
    padding: 2rem;
    background-color: #f9f9f9;
}

.testimonial-spotlight-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    width: 250px;
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card img {
    max-width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}




.stars {
    font-size: 1.2rem;
    color: #f5c518;
    margin-bottom: 0.5rem;
}

.star {
    display: inline-block;
    margin: 0 1px;
}

.star.filled {
    color: #f5c518; /* gold */
}

/* Base form styling */
form {
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    background-color: #f9f6f1;
    padding-top: 0rem;
    border: 0px solid #ddd;
    border-radius: 0px;
}

/* Label and input styles */
form label {
    display: block;
    margin-bottom: 0rem;
    font-weight: bold;
    color: #333;
}

form select,
form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 0px solid #bbb;
    border-radius: 0px;
    font-size: 1rem;
}

/* Submit button */
form button[type="submit"] {
    background-color: #b87333; /* Forged bronze tone */
    color: #fff;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #b87333; /* Slightly lighter hover tone */
}

.cart_total_container {
    background-color: #fff8f2;
    border: 0px solid #b87333;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-family: 'Georgia', serif;
    color: #333;
}
.copper-btn1 {
    background-color: #b87333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block; 
    margin: 10px;       
    text-decoration: none;  
}


.copper-btn:hover1 {
    background-color: #9a5e28;
}


#why-direct .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    
}

#why-direct .half-width {
    flex: 1 1 48%;
    box-sizing: border-box;
    font-size: 20px
   
}

@media (max-width: 768px) {
    #why-direct .half-width {
        flex: 1 1 100%;
    }
}


.profile-testimonial-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.profile-box,
.testimonial-form-box {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Optional: avatar preview styling */
.avatar-preview {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}
.section-heading {
    text-align: center;
}

.product-description {
  background-color: #fffaf5;
  border: 1px solid #e3d5c0;
  padding: 1.5rem;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #3d2e1e;
  max-width: 600px;
  margin: 1rem auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-description strong {
  color: #b87333; /* copper-like shade */
  font-weight: 600;
}

.product-description em {
  font-style: italic;
  color: #6b4c3b;
}

.product-description p:last-child {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2a1a0f;
}
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.product-gallery a {
  flex: 1 1 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
}

.product-gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.02);
}
.product-gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-gallery img.thumb {
  width: 150px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* Lightbox container */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Lightbox image */
.lightbox-image {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  margin: 1rem 0;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Optional: add hover effects */
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  color: #ffcc66;
}
