*,
*:before, *:after { /* Universal selector to apply styles to all elements */
    margin: 0;
    padding: 0;
  
}

body {
    height: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    
    background-color: #fdfbf9; /* Soft off-white */
    text-align: center;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

main {
    margin: 0px 0px 60px;
    padding: 80px 0px 0px 0px;
}

h1, h2, h3 {
    color: #5c4831;
}

h1 {
    font-size: 32px;
    
}

h2 {
    font-size: 28px;
    font-weight: bold;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 18px;
    color: #000000;
}



/* Logo styling */

.logo {
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* Center the logo */
    display: block; /* Make it a block element for centering */
    font-size: 1.5rem;
    font-family: 'Garamond', serif; /* Elegant serif for logo */
    color: #5c4831; /* Dark brown for logo */

}

.logo:hover, .logo:focus {
    color: #473827; /* Darker brown on hover */
    text-decoration: none; /* Remove underline on hover */
    transition: color 0.3s ease; /* Smooth transition for color change */
    outline: none;
}

/* Home Page: Hero Section */

.hero {
    padding: 25px 16px 25px;
    font-family: 'Garamond', 'Times New Roman', serif;
    background-color: #e0d8ce; /* Muted background color (Fallback) */
    text-align: center;
    color: #5c4831;



}

.hero h1 {
    font-family: inherit;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;; /* Inherit font from body */
    font-size: 1.2rem;
    color: #5c4831;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #8a6d4e; /* Darker brown for button */
    color:#fff;
    padding: 1rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;; /* Inherit font from body */
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none; /* Remove underline from link */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover, .cta-button:focus {
    background-color: #725b41;
    color: #fff;
    transform: translateY(-2px);
    outline-offset: 0.25rem; /* Adjust focus outline offset */

    outline: 2px solid #d4bfa9;

    border-color: #8a6d4e;

}

/* Home Page: featured products section */

.featured-products {
    font-family: 'Garamond', 'Times New Roman', serif;
    margin: 0px 8px 50px;
    color: #54422d;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

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

.product-card img {
    width: 80%;
    height: 200px;
    object-fit: cover; /* Cover the entire area of the card */
    background-color: #f0f0f0; /* Placeholder bg */

}

.product-card figcaption {
    padding: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #8a6d4e;
    font-weight: bold;
}

/* Sections styling */

.section {
    margin: 0;
    padding: 0;
}

.section-heading {
    
    margin: 24px 6px 12px;
    padding: 0;
    color: #5c4831;
    font-weight: 900;
    font-family: 'Garamond', 'Times New Roman', serif;
}

.section-text {
    margin: 16px 6px 16px;
    padding: 0;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer */

#footer {
    min-height: 50px;
    margin-top: auto;
    padding: 10px 16px;
    


    background-color: #f0ebe5;
    color: black;

    display: flex;
    justify-content: space-between;
    align-items: center;


}


#footer-text {
    display: block;
    margin: 0 auto;

}

footer a i {
    color: #5c4831; /* Dark brown for icons */
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

/* Products page styling */


.catalogue {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;

    margin: 5px 80px;
}

.product {
    margin: 5px;
    aspect-ratio: 1.335 / 1;

    max-width: 400px;
    border-radius: 30px;
}


.highlight-word {
    color: #e74c3c; /* Or any color you want, e.g., red, blue, #ff00ff */
    /* You can add other styles too, like font-weight */
    font-weight: bold;
}


.flex-container img:hover {
    transform: scale(1.05); /* Scale the image slightly on hover */
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
}

.site-header {
    min-height: 50px;
    position: fixed; /* The header will be fixed at the top of the page (*/
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* The header will have a subtle shadow for visual depth */


    background-color: bisque;




    z-index: 1000; /* The header will be on top of the other elements */
    height: 50px;


}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */

}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;

    text-decoration: none;
    color: #5c4831;
    font-size: 1.5rem;
    font-weight: bold;
}

.header-icon-wrapper {
    width: 15px;
    display: flex;
    justify-content: right;
}

.header-icon {
    font-size: 1.5rem;
    width: 50px;
   
    color: #5c4831;
}



.logo img {
    height: 30px;
    width: auto; /* Maintain aspect ratio */
}


.site-header a {
    text-decoration: none; /* Remove underline from links */
    font-weight: bold;

}






/* navigation bar styling (will be fixed at the top of the page */

nav {
    margin: 0;
    padding: 0;
    position: fixed;

    top: 50px;
    left: 0;
    width: 100%;
    z-index: 999;

    font-family: 'Franklin Gothic', Arial, Helvetica, serif, sans-serif;
    font-weight: normal;




}

nav ul {
    list-style-type: none;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 0.4rem;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 0.2rem;
    margin: 0;
}

nav ul li a:hover, a:focus {

    transition: 0.2s ease;

    outline: 1px solid #d4bfa9;

}


nav ul li a.active {
    font-weight: 800;

    color: grey;
}


#mainImage {

    max-width: 50%;
    width: auto;

}





section ol {
    list-style-type: decimal !important;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

section ol li {
    display: list-item !important;
}

ol li::marker {
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    color: black;
}





.map-responsive {

    width: 500px;
    height: 500px;
    overflow: hidden;
    position: relative;
    
    margin: 0 auto; /* Center the container on the page */

}

.map {
    border-radius: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto; /* Center the map within its container */

}







.instagram-embed-container {
  width: 100%;
  max-width: 540px; /* Same as Instagram's default width */
  margin: 0 auto;
  text-align: center;
}


#scroll-top {
    display: none;
    opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(0,0,0,.4);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 2px;
    text-align: center;
    z-index: 100;
    box-sizing: content-box;
}

/* Video styling */

.video-section-container {
    margin: 1%;
    display: flex;
    justify-content: left; /* Horizontally center flex items */
    align-items: center
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    background: #000;
    flex-shrink: 0;
  }

  .video-wrapper video,
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

