@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jua&display=swap');

html, body{
    background-color:#FFF0D1;
    box-sizing: border-box;
    font-family: "Quicksand";
    font-style: normal;
    margin: 0px;
    overflow-x:hidden;
    width:100%;
}

.fullwidth{
    width:100vw;
}

h2{
    color:#3B3030
}

/* CSS for the navigation bar --------------------------------------------------------------------------- */
.hero-nav{
    position: fixed;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 20px;
    padding-bottom:10px;
    z-index: 100;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 1;
    visibility: visible;

    /* Translucent background */
    background: rgba(0, 0, 0, 0.3); /* Adjust alpha (0.3 = 30% opacity) */
    
    /* Optional: Add blur effect */
    backdrop-filter: blur(10px); /* Softens the background behind */
}

/* New CSS */

.product-showcase{
    margin-bottom:100px;
}

.product-teaser{
    position: relative;
    width: 100%;
    background-color: black;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-teaser video{
    width:100vw;
    height:85vh;
    display:block;
    object-fit: cover;
    opacity: 0.6;
    
}

.product-teaser img{
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Perfect centering */
    width: 70%; /* Adjust size as needed */
}

.product-name {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
    align-items: center; /* Centers content horizontally */
    font-size:1.3em;
    color:#664343;
    font-size:1.5em;
    text-align: center;
}

.product-name h2{
    color:#664343;
    font-family: Jua;
    font-size: 2em;
}

hr {
    margin-top: 5%;
    margin-bottom: 3%;
    border-color:#664343;
    width:80%;
}

.product-name img{
    width:40vw;
}

.product-subtitle {
    margin-left: 10%;
    margin-right: 10%;
}

.featured-products {  /* contains the frames for the product display */
    display: flex;
    justify-content: center;
}

.product-frames{
    display: block;
    width: 230px;
    height: 290px;
    margin: 15px;
    background: #FFF0D1;
    border: 5px solid #3b3030;
    border-radius: 7px;
    overflow:hidden;
    position:relative;
    transition: transform 0.3s ease-in-out;
}

.product-frames:hover{
    transform: scale(1.2); /* Enlarges without affecting layout */
}

.product-frames p {
    position: absolute; /* Makes the text overlay the image */
    top: 10px; /* Adjust vertical positioning */
    left: 50%;
    transform: translateX(-50%); /* Centers text horizontally */
    z-index: 1;
    background: rgba(0, 0, 0, 0.6); /* Optional: Adds a semi-transparent background for readability */
    color: #fff0d1;
    font-weight:bold;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    width: 90%; /* Adjust as needed */
}

.product-frames img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the image cover the container without distortion */
    z-index:0;
}

.footer-bar {
    display: flex;
    margin: 0px;
    background: #664343;
    height: 150px;
}

.footer-content {
    text-align: center;
    padding: 20px;
    background: #3b3030; /* Dark background */
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.link-about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-button {
    display: inline-block;
    text-decoration: none;
    background: #fff0d1; /* Wheat button */
    color: #664343;
    padding: 15px 20px; /* Increased padding for a bigger button */
    width: 300px; /* Set a fixed width for uniformity */
    margin: 5px;
    border-radius: 5px;
    font-size: 18px; /* Makes the text bigger */
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.footer-button:hover {
    background: #795757; /* Chocolate on hover */
    color:#FFF0D1;
    transform: scale(1.05); /* Slight grow effect */
}

.footer-about {
    list-style: none;
    padding: 0;
}

.footer-about li {
    margin-top: 5px;
}


.footer-bar {
    display: flex;
    align-items: center;
}

#footer-logo {
    margin-left: 10%;
}

#footer-logo img{
    width:15vw;
}

#soc-med-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 10%;
    gap: 40px;
    color:#fff0d1
}

#soc-med-links a{
    color:#FFF0D1;
    font-weight: bold;
    font-family: Jua;
    font-size: 1.3em;
}

.footer-contacts {
    height: 150px;
    margin: 0px;
    border: 2px solid #795757;
    background: #795757;
    color: #fff0d1;
}



.contacts-description p{
    margin-top:2%;
    text-align: center;
    font-weight:bold;
}



/* CSS for website responsiveness ---------------------------------------------------------------------------*/

    /* (600px and below) */
@media only screen and (max-width: 600px) {
    .product-teaser img{
        width:100%;
    }
    .product-teaser video{
        height:77vh;
    }
}

    /* (601px - 768px) */
@media only screen and (max-width: 768px) {
    
}

    /* (769px - 992px) */
@media only screen and (max-width: 992px) {
    
    
}

    /* (993px - 1200px) */
@media only screen and (max-width: 1200px) {
    
}


