/* Ensure the body takes up the full height of the page */
html, body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  position: relative;
  width:100%;
}

.poetsen {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1.poetsen, h2.poetsen, h3.poetsen {
  position: relative;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1.poetsen::after, h2.poetsen::after, h3.poetsen::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #8B4513 20%, #8B4513 80%, transparent 100%);
}

p.poetsen {
  font-family: "Poetsen One", sans-serif;
  font-weight: 700;
}

p {
  padding: 0px;
}

h2 {
  margin-top: 10px;
  position: relative;
  padding-bottom: 15px;
}

.sewing-divider {
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
}

.sewing-divider svg {
  max-width: 100%;
  height: auto;
}

.location-card {
  background: #ffffff;
  border: 2px solid #f0e6d2;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.location-card h3 {
  color: #8B4513;
  font-size: 1.5rem;
}

.location-card i {
  color: #8B4513;
  margin-right: 8px;
}

.location-card .map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.location-card p {
  line-height: 1.6;
  color: #333;
}

.about-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
}

/* Price list wavy dotted line */
.d-flex.justify-content-between.w-100 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.d-flex.justify-content-between.w-100::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,5 Q10,2 20,5 T40,5 T60,5 T80,5 T100,5 T120,5 T140,5 T160,5 T180,5 T200,5' stroke='%238B4513' stroke-width='1' fill='none' stroke-dasharray='3,3'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 10px;
}

img { 
  border: none; /* or border: 0; */
}



.homepage-text {
  padding:120px 20px 0px 10px;
  align-self: flex-end;
  position: absolute;
  z-index: 5;
  margin: 2px 2px;
  color: #ffffff;
  font-size: 3rem;
}

.dnone{
  display: none;
}


body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  background-color: #f0f0f0;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.letter {
  font-size: 3em;
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.5s ease, transform 0.5s ease; 
  margin-right: 10px; 
}

.letter.reveal {
  opacity: 1;
  transform: translateY(0);
}

.ha {
  margin-top: 10px;
  margin-left: 10px;
}

nav {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav h2.poetsen {
  margin: 0;
  font-size: 1.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(139, 69, 19, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-top: 10px;
  float: right;

}

.hamburger .bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin: 4px 0;
}

.hamburger.toggle .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-10px, 6px);
}

.hamburger.toggle .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle .bar:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -6px);
}
/* Media query for tablets and mobile devices */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      background-color: #fff;
      flex-direction: column;
      align-items: center;
      z-index: 200;
      padding-left: 0px;
  }

  .nav-links li {
      margin: 1.5rem 0;
  }

  .hamburger {
    display: flex;
    padding-right: 30px;
    padding-bottom: 10px;
}

}

/* Toggle active class for the hamburger menu */
.nav-active {
  display: flex !important;
}

/* Custom styling for the container */
.menuimg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-size: cover; /* Ensures the image covers the whole container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  justify-self: center;
  text-align: center;
}
/* Custom styling for the logo */
.logo {
  background-image: url("#");
  min-height: 30px;
  min-width: 30px;
  max-height: 100px;
  max-width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;

}

/* Custom styling for headers */
h1, h2, h3 {
  font-family: 'Sukar', sans-serif;
}

h1{
  font-size: 1rem!important;
}


.h2Logo {
  font-family: 'Sukar', sans-serif;
  color: black!important;
  justify-content: start;
}



#about{
  background-color: #ffffff;
  font-family: 'Sukar', sans-serif;
  font-size: 1.3rem;

}

iframe {
margin: 15px;
}
#contact-form {
  max-width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#contact-form .form-control {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#contact-form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

#contact-form .btn-dark {
  background-color: #000;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#contact-form .btn-dark:hover {
  background-color: #333;
  transform: translateY(-2px);
}

#contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  #contact-form {
    padding: 1rem;
  }
}

.contact-text {
text-align: center;
padding-top: 10px;
font-family: 'Sukar', sans-serif;
font-size: 1.3rem;
}

@media (max-width: 868px) {
  .event-text{
    text-align: center;
    font-size: 1.3rem;
  }
}

.container {
  width: 100%!important;
  padding:0px;
}


/* Custom styling for the "Coming Soon" text */
.coming-soon-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;

}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 3rem!important;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook, .fa-instagram {
  margin: 10px;
  color: black;
}

.originalLogo {
  background-image: url("#");
  min-height: 230px;
  min-width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.section1 {
  background-color: none; 
  text-decoration: dashed underline;
  min-height:4px;
  width: 100%;
  border-bottom: 2px dashed #000;
}
.section0 {background-color: black;
              min-height:4px;}
.section2 {background-color: black;
  min-height:4px;}
  .section3 {background-color: black;
    min-height:4px;}

.menutext {
 text-decoration: none;
 background-color: white;
 font-family: 'Sukar', sans-serif;
   /* filter: grayscale(100%);   */
  /* border-radius: 10px; */
}

.menuimg {
  margin: 1px!important;
}

height {
  min-height: 400px;;
}


.hero-image {
  background-image: url("WhatsApp Image 2025-09-17 at 20.50.47.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: 50% 48%;
  min-height: 500px;
  max-height: 1000px;
  opacity: 0.9;
  margin-top: 20px;
}

@media (max-width: 868px) {
  .hero-image {
    background-position: 60% 67%;
    max-height: 700px;
  }
} 

*/
.contact-page-form {
  margin-top: 2rem;
}
/* Custom height for specific elements */
.hero {
  margin-top: 10px;
  height: 1100px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.container-fluid {
  display: flex;
}

.list-container {
  width: 150px;
  background-color: #f0f0f0;
  padding: 10px;
}

.content-container {
  flex-grow: 1;
  padding: 20px;
}

.content-item {
  display: none;
}

.content-item.active {
  display: block;
}

.content-item img {
  max-width: 300px;
  height: auto;
}

.banda{
  background-image:url("Alterations_Stroud.jpeg");
}

tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: solid;
  background-color: #f9f9f9!important;
  color: #000000!important;
  border-width: 0;
  border-collapse: collapse;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  overflow-x: auto;
  display: block;
}

th {
  font-weight: bold;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  background-color: #bbb;
  color: #000;
}

th {
  background-color: #000;
  color: #fff;
}
ul, ol {
  margin: 0;
  padding-left: 20px; /* Indent the lists */
  list-style: none;
}

.description {
  text-align: center;
}


.justifiedText {
  display: flex;
  letter-spacing: normal;
  align-items: center;
  text-align: justify;
  justify-content: center;
  padding: 10px;
}
    @media (max-width: 868) {
     .justifiedTextHeader {
      display: flex;
      letter-spacing: normal;
      align-items: center;
      text-align: center;
      padding: 10px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background-color: #000000;

}

#footer {
  background-size: cover;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;

}
#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
#footer .container {
  position: relative;
}
#footer h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
/*font-family: "Satisfy", serif;&*/
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
  justify-content: center;
}
#footer .copyright {
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: 'Sukar', sans-serif;
  margin-bottom: 40px!important;
}

.fcf-body {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0000ff;
  text-align: left;
}

a{
  color: #ffffff!important;
  text-decoration: none!important;
}
#footer .copyright {
  margin: 20px 0 0px 0;
  justify-content: center;
}

.bi {
  width: 2rem!important;
  height: 2rem!important;
  fill: #000;
  margin-top: 25px;
}

footer .bi {
  fill: #ffffff;
  margin-top: 25px;
  width: 3rem !important;
  height: 3rem !important;
}



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

.modal-content {
  margin: 5% auto; 
  display: block;
  width: 80%; 
  max-width: 700px;
  position: relative;
}

.close {
  top: 100px;
  right: 35px;
  color: #000000;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  position: absolute;
}

@media only screen and (min-width: 768) {
  .close {
    right:200px;
    top: 100px;
  }
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 576px) {
  .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  table {
    font-size: 14px;
  }
}
