@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* *************** typography ****************** */

h1 {
    font-size: 1.5rem; 
    color: #5C4233;
}

/* body {
    cursor: pointer;
} */
h2 {
    font-size: 1.25rem;
    color: #5C4233;
    border-bottom: 5px solid #A65156;
    display: inline-block;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.1rem; 
    color: #5C4233;
}

p {
    font-size: 1rem; 
    color: #5C4233;
}

button {
    font-size: 1rem;

}

body {
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, button {
  font-family: "Bebas Neue", sans-serif;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.white-space {
    margin-bottom: 5rem;
}

/* *************** header & nav ****************** */
header {
  background-color: #000;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

.logo img {
  height: 50px;
  width: auto;
}

.toggle-btn {
  background: none;
  border: none;
  outline: none;
  display: block; 
  color: pink;
}

.toggle-btn svg rect {
  fill: #B3AA9D;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile nav hidden by default */
nav {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

nav.show-nav {
  max-height: 500px;
}

.menu li {
  text-align: center;
  line-height: 2.5rem;
}

 .menu a {
  color: #B3AA9D;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
}

.menu a:hover {
    color: white;
    border-bottom: 3px solid #843F4B;
}

nav ul li a.active {
    border-bottom: 3px solid #843F4B;
    font-weight: bold;
    color: #fff;
  }

  .btn:hover {
    background-color: rgba(132, 63, 75, 0.7);
  }

/* *************** header banner ****************** */
.header-banner {
  background: url('../img/header-banner.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 3rem 2rem;
  color: #fff;
}

.header-banner p {
  margin-bottom: 2rem;
  margin-right: 5rem;

}


.btn {
    background-color: #843F4B;
    border: none;
    border-radius: 5rem;
    padding: 0.75rem 2rem;
    color: #fff;
    transition: color 0.3s ease;
    cursor: pointer;
}


/* ********************** sections ****************** */
.content {
    padding: 2rem;
}

.our-services {
    padding: 2rem;
    background-color: #f5f5f5;
}

.services-intro {
    margin-bottom: 2rem;
}

.services-icons {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 150px;
}

.service-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.5rem;
    object-fit: cover;
    border-radius: 1rem;
}

.instagram-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    background: url('../img/camo.webp') center/cover no-repeat;
    text-align: center;
    border-radius: 1rem;
    /* margin-bottom: 2rem; */
}

.instagram{
    width: 100%; 
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #843F4B;
}

.instagram-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    color: #5C4233;
}

.instagram-logo {
    width: 75px;
}


/* ******************** contact form ****************** */
.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    background: url('../img/camo.webp') center/cover no-repeat;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.form-container {
    width: 100%; 
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #843F4B;
}

.form-container h2 {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    text-align: left;
    margin-bottom: 0.25rem;
    font-weight: bold;
    color: #5C4233;
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #5C4233;
    border-radius: 0.5rem;
    font-size: 1rem;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #843F4B;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

/* ******************** footer ****************** */
.site-footer {
    background-color: #000; 
    padding: 2rem;

}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    padding: 0rem 0.5rem;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #B3AA9D; 
}

.footer-section p {
    margin: 0.25rem 0;
    color: #B3AA9D; 
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    color: #B3AA9D; 
}


/* ******************** merch ****************** */

.merch {
    padding: 3rem 2rem; 
    background-color: rgba(179, 170, 157, 100);
}

.merch .inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.merch .btn {
   margin-top: 2rem;
}

.merch-cta {
    padding-bottom: 1rem;
}

.merch-info {
    padding-bottom: 2rem;
}

.merch-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* justify-content: center; */
}

.merch-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    max-width: 250px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.gallery {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.main-image img {
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnails img {
    width: 50px;
    height: 50px;
    border-radius: 0.25rem;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.process-timeline {
    padding: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-step img {
    width: 100%;
    max-width: 180px;
    border-radius: 0.25rem;
    object-fit: cover;
}

.timeline-text h3 {
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 0.5rem;
}

.timeline-text p {
    color: #5C4233;
    line-height: 1.6;
}

.section-title {
    margin: 1rem 0 2rem 0;
    border-bottom: 2px solid #A65156;
    display: inline-block;
}

.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card styling */
.timeline-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 0.25rem;
    object-fit: cover;
    margin-bottom: 1rem;
}

.timeline-text h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-text p {
    font-size: 1rem;
    color: #5C4233;
    line-height: 1.6;
}

/* About  */
.text-section > p:nth-of-type(2) {
    padding-top: 2rem;
}

.banner {
    background: url('../img/camo.webp') center/cover no-repeat;
    padding: 30px 10px;
    text-align: center;
    color: white;
  }
  
  .banner-content h1 {
    font-size: 2rem;
    margin: 0;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    padding: 3rem 2rem;
  }
  
  .about-content p {
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
  }
  
  .about-content img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    padding: 3rem 2rem;
  }

  .price-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    padding: 3rem 2rem;
  }

  .gallery-content {
    padding-top: 2rem;
  }

/* Tablet and desktop layout */
@media (min-width: 768px) {
    .timeline-cards {
        flex-direction: row;
        justify-content: space-between;
    }
    .timeline-card {
        flex: 1;
        max-width: 30%;
        text-align: left;
        align-items: flex-start;
    }
    .timeline-card img {
        margin-bottom: 1rem;
    }
}
.gallery-masonry {
    column-count: 2; 
    column-gap: 1rem;
    padding-bottom: 2rem;
}

.gallery-item {
    margin-bottom: 1rem;
    break-inside: avoid;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.5rem;
}

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

.gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* ================ Responsive Styles ================== */

/* ---------- Small devices: >=480px ---------- */
@media (min-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p  { font-size: 1rem; }
  button { font-size: 1.1rem; }

  .gallery-masonry {
    column-count: 2;
  }
}

/* ---------- Medium devices: >=768px (Tablet) ---------- */
@media (min-width: 768px) {
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  p  { font-size: 1.1rem; }
  button { font-size: 1.2rem; }

  .toggle-btn {
    display: none;
  }
  nav {
    max-height: none;
    overflow: visible;
    width: auto;
  }
  .menu {
    display: flex;
    gap: 2rem;
  }
  .menu li {
    line-height: normal;
  }

  .header-banner {
    min-height: 70vh;
  }

  body {
    margin: 0 auto;
  }

  .footer-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .firstfooter {
    padding-left: 8rem;
  }

  .timeline {
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
  }
  .timeline-step {
    flex: 1;
    min-width: 250px;
  }
  .timeline-step img {
    max-width: 150px;
  }

  .gallery-masonry {
    column-count: 4;
    padding-top: 3rem;
  }

  .gallery-instagram-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  .gallery-section,
  .instagram-section {
    flex: 1;
  }
  .instagram-section {
    margin-right: 2rem;
  }

  .content {
    padding-top: 0;
  }

  /* Contact Form (tablet layout) */
  .form-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    text-align: left; 
  }
  .form-container h2 {
    font-size: 2rem;  
    margin-right: 2.5rem;
  }
  form {
    flex: 1;
    max-width: 50%;
  }
  .banner-content h1 {
    font-size: 3rem;
  }

  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .text-section,
  .image-section {
    flex: 1;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .about-content img {
    max-width: 100%;
  }
}

/* ---------- Large devices: >=1024px (Desktop) ---------- */
@media (min-width: 1024px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  p  { font-size: 1.2rem; }
  button { font-size: 1.3rem; }

  .form-container h2 {
    font-size: 3rem; 
  }

  .inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;   
    padding-right: 5%;
    box-sizing: border-box;
  }

  .gallery-instagram-wrapper {
    display: flex;
    gap: 2rem;   
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery-section,
  .instagram-section {
    flex: 1;        
    min-width: 0;   
  }
  .gallery-masonry {
    column-count: 4; 
  }
  .gallery {
    margin-right: 5rem;
  }

  .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;  
    padding-right: 5%;
  }

  .banner-content h1 {
    font-size: 4rem;
  }

  .about-content p {
    font-size: 1.2rem;
  }

  .services {
    padding-bottom: 10rem;
  }

  .form-container {
    max-width: 1200px;
  }

}






/* Container for Price Cards */
.price-grid {
    display: block; 
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .price-section {
    margin: 3rem 0;
  }

  .price-card ul {
    padding: unset;
  }
  
  /* Desktop Flex Layout */
  @media (min-width: 992px) {
    .price-grid {
      display: flex;
      justify-content: space-between; 
      flex-wrap: nowrap; 
    }
  
    .price-card {
      flex: 1 1 30%; 
      margin-bottom: 0; 
    }
  }
  
  .price-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    margin-bottom: 2rem; 
  }
  
  .price-card:hover {
    transform: translateY(-4px);
  }
  
  .price-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #5C4233;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }
  
  .price-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 1rem;
    color: #444;
  }
  
  .price-card li:last-child {
    border-bottom: none;
  }
  
  .price-card span:last-child {
    font-weight: 600;
    color: #222;
  }

  .deposit-box {
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px dashed #5C4233;
  }
  


   .site-footer a {
    color: #B3AA9D; 
    text-decoration: none;
  } 
