* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #311c15;
    color: #c19855;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;

    width: 100%;

    padding: 30px 30px;

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

    z-index: 1000;

    background: rgba(20, 20, 20, 0.7);

    backdrop-filter: blur(10px);

    box-shadow: 0 0 30px rgba(212,175,55,0.08);
}

.navbar img {
    width: 125px;
    margin-top: 8px;
}

.navbar ul {
    display: flex;
    gap: 40px;

    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;

    transition: 0.3s;
    letter-spacing: 1px;
}

.navbar a:hover {
    opacity: 0.6;
    color: #c19855;
}



@media (max-width: 900px) {

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px;
    }

    .navbar .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .navbar ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 24px;
        width: 100%;
    }

    .navbar li {
        flex: 0 1 auto;
    }

    .navbar a {
        display: block;
        text-align: center;
        white-space: nowrap;
    }
}

/* HERO */

.hero {
    min-height: 100vh;

    padding: 150px 80px;

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

.hero-text {
    max-width: 700px;
    
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: rgba(217, 214, 214, 0.893);
    padding: 100px 40px;
    
}

.hero .highlight {
    color: #c19855;        
    font-weight: 700;
}


.hero-image img {
    width: 500px;
    
    
}

/* SECTIONS */

section {
    padding: 120px 80px;
    padding-top: 10px;
    scroll-margin-top: 120px;
}


h2 {
    font-size: 2rem;
    margin-bottom: 75px;

    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

    padding: 0 0;
    text-align: center;
}

/* PRODUCTS */

.product-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.product-container::-webkit-scrollbar {
    display: none;
}
.product-card {
    flex: 0 0 clamp(180px, 30vw, 320px);
    box-sizing: border-box;
    text-align: center;
    padding: clamp(15px, 2vw, 30px);
    border-radius: 25px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    transition: .4s;
}
.product-card h3 {
    font-size: clamp(1rem, 2vw, 2rem);
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
}



.product-card:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.08);
}

.product-card img {
    width: 100%;
    max-width: clamp(100px, 18vw, 220px);
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.product-card img:hover {
    transform: scale(1.05);
}

.arrow {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}



.arrow.left { margin-right: 15px; }
.arrow.right { margin-left: 15px; }

/* VIDEO */

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-width: 800px;
    border-radius: 20px;
    border: 5px solid rgba(165, 127, 67, 0.613);  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    background: #1a1a1a;
   
}

.video-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* ABOUT */

.about {
    padding: 100px 80px;
    text-align: center;
}

.about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);     
    border-radius: 25px;                       
    padding: 85px 130px 70px 90px;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: visible;
    transition: all 0.4s ease;               
    backdrop-filter: blur(10px);              
}

.about-card:hover {
    transform: scale(1.02);                   
    background: rgba(255, 255, 255, 0.08);    
}

.about-content {
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.75;
    color: #f5e8d3;
}

.about-content p {
    margin-bottom: 1.8rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}
.about-text {
    background: rgba(49, 28, 21, 0.9);
    border: 2px solid #c19855;
    border-radius: 30px;
    padding: 90px 70px;
    max-width: 800px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.about-logo {
    position: absolute;
    top: -75px;      
    right: -75px;   
    width: 240px;    
    height: 240px;   
    z-index: 3;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.65));
}

@media (max-width: 768px) {
    .about-card {
        padding: 60px 40px 50px 40px;
        border-radius: 30px;
    }
    
    .about-logo {
        position: relative;
        top: auto;
        right: auto;
        margin: 30px auto 0;
        width: 120px;
        height: 120px;
    }
    
    .about-content {
        text-align: center;
    }
}

/* CONTACT */

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
  
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;           
}

input,
textarea {
    padding: 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(205, 200, 194, 0.757);

    border: 2px solid rgba(193, 152, 85, 0.4); 
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #c19855; 
    box-shadow: 0 0 10px rgba(193, 152, 85, 0.4);
}

textarea {
    min-height: 150px;
}

button {
    padding: 18px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 15px;
}

/* form button */

form button {
    background: rgba(170, 125, 57, 0.811);
    color: black;
}

/* slider arrows */

.arrow {
    background: none;
    color: white;
    font-size: 3rem;
}

button:hover {
    opacity: 0.8;
}

/* FOOTER */

footer {

    position: relative;
    padding: 0;
    margin-top: 60px;
    overflow: hidden;
}

.footer-top {

    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.footer-top img {
    width: 250px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    
}

.footer-bg {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.449);   
    padding: 50px 10px 50px 10px;         
    position: relative;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
}

.footer-bottom p {
   
    margin: 0 !important;
    text-align: left !important;
    flex: 1;
}


.socials {
    display: flex !important;
    gap: 25px !important;
    justify-content: flex-end !important;
}

.socials a,
.back-to-top {
    color: white;
    text-decoration: none;
}

.socials a img {
    width: 40px;
    height: 40px;
    object-fit: contain;

}

/* BACK TO TOP BUTTON */

.back-to-top-btn {
    background: rgba(255, 255, 255, 0.09);
    width: 50px;
    border-radius: 20px;
    padding: 18px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 35px;
    height: 45px;
    backdrop-filter: blur(12px);
    outline: none;
    transition: 0.7s ease;
}

.back-to-top-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-6px);
}

/* Arrow */
.back-to-top-btn {
    color: #c19855;
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}

.back-to-top-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 20px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

}