@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');


html {
  scroll-behavior: smooth;
}

body { 
    margin: 0;
    padding: 0;
    font-family: 'EB Garamond', serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.logo a {
    font-family: 'EB Garamond', serif;
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    text-shadow: 0 0 5px #ffb33f,
                0 0 10px #ffb33f,
                0 0 20px #ffb33f,
                0 0 30px #ffb33f,
                0 0 40px #ffb33f,
                0 0 55px #000,
                0 0 70px #000;
        
}

.nav-links {
    display: flex;
    gap: 5px; 
    margin-left: 500px; 
}

.nav-btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    border: 1px solid white;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.nav-btn:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
    box-shadow:0 0 20px #ffb33f;
}

.burger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

.hero {
    height: 85vh;
    width: 100%;
    background: url('img/hero.png') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 100px;
    margin-top: 65px;
}

.explore-btn {
    background-color: #9f0000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s, background-color 0.3s;
}

.explore-btn:hover {
    background-color: black;
    color: white;
    border: 1.5px solid white;
    box-shadow:0 0 20px #ffb33f;
}

.about {
    display: flex;
    min-height: 500px; 
    font-size: 20px;
}

.about-left {
    flex: 1;
    background-color: #9f0000;
    padding: 40px;
}

.about-right {
    flex: 1;
    background-color: black;
    padding: 40px;
}

.products {
    padding: 40px;
    text-align: center;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 products per row */
    gap: clamp(15px, 2vw, 20px);
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    background-color: #1c1c1c;
    padding: 20px;
}

.product img {
    width: 100%;
    height: auto;
}

.buy-btn {
    background-color: #9f0000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.buy-btn:hover {
    background-color: #7f0000;
}

.contact {
    padding: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto 20px;
    gap: 10px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    background-color: #1c1c1c;
    border: none;
    color: white;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
}

.contact-form textarea{
    height: 100px;
}



.contact-form button {
    background-color: #9f0000;
    color: white;
    padding: 10px;
    border: none;
    font-family: 'EB Garamond', serif;
    transition: transform 0.3s, background-color 0.3s;
}

.contact-form button:hover {
    transform: translateY(-5px);
    background-color: #7f0000;
    cursor: pointer;
}




input[type="text"],
input[type="email"],
textarea {
  border: none;
  padding: 10px;
  border-radius: 5px;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1px solid #ffb33f; 
  box-shadow: 0 0 20px #ffb33f;
}




.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s;
}

.social:hover {
    transform: translateY(-5px);
}

.yt { background-color: red; border: 1.5px solid white;}
.ig { background-color: #DD2A7B; border: 1.5px solid white;}
.tt { background-color: #000; border: 1.5px solid white;}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 2px solid #9f0000;
    background-color: black;
    flex-wrap: wrap;
}

.footer-left ul {
    list-style: none;
    padding: 0;
}

.footer-left a {
    color: white;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: large;
}

.footer-left a:hover{
    color: #ffb33f;
}

.footer-right a {
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: large; 
}


.footer-middle img{
    height: 175px;
    width: auto;
}

.stamp{
    color: #4D4DFF;
}

.stamp:hover{
    color: #4343dc;
}

.stamp2{
    color: #b8d432;
}

.stamp2:hover{
    color: #99af29;
}



.lore {
    padding: 80px 40px 40px;
    text-align: center;
}

.lore-block {
    background-color: #9f0000;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: black;
    border-radius: 5px; 
}

::-webkit-scrollbar-thumb {
    background: #9f0000;
    border-radius: 5px; 
    
    
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb33f;
}



/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px;

        /* Start hidden off-screen */
        transform: translateX(-110%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-links.active {
        /* Slide into view */
        transform: translateX(0);
    }

    .burger {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px; /* keeps burger on the right side */
        margin: 0;   /* reset the big left margin */
        z-index: 1001; /* make sure it's above nav */
        transform: translateX(-80px);
    }

    .nav-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .about {
        flex-direction: column;
    }

    .about-left {
        order: 1;
    }

    .about-right {
        order: 2;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 50px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, 
    .footer-middle, 
    .footer-right {
        margin: 10px 0;
    }

    .footer-middle img {
        height: 120px; /* smaller logo on mobile */
    }
}
