body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background: #fff8e1;

}

html {
    scroll-behavior: smooth;
}

.container {
    display: flex;
    justify-content: space-between;
    background-color: #A16B38;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;

}

#nav__s1__h3 {
    color: #380F0B;
}

#sidenav {
    background-color: #A16B38;
}

.frontimage {
    position: relative;

}

#banner {
    width: 100%;
    height: 550px;
    object-fit: fill;
    border-radius: 12px;
    margin-top: 15px;

}

.glow-text {
    text-shadow: 0px 0px 5px #facc15, 0px 0px 10px #facc15, 0px 0px 20px #facc15;
    animation: glow 2s infinite;
}


@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px #facc15;
    }

    50% {
        text-shadow: 0 0 20px #facc15;
    }
}

/* for hitlist class*/
.glowing-text {
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.4),
        2px 2px 4px rgba(255, 165, 0, 0.3);
    /* slight orange glow */
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow:
            1px 1px 2px rgba(0, 0, 0, 0.4),
            2px 2px 4px rgba(255, 165, 0, 0.3);
    }

    to {
        text-shadow:
            2px 2px 6px rgba(0, 0, 0, 0.6),
            3px 3px 8px rgba(255, 165, 0, 0.5);
    }
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* for new arrival section */
.effect__text {
    color: #7B3F00;
    text-shadow: 0 0 8px #f59e0b, 0 0 12px #f59e0b;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px #f59e0b, 0 0 12px #f59e0b;
    }

    to {
        text-shadow: 0 0 12px #facc15, 0 0 16px #facc15;
    }
}

/* announcement*/
.announcement {
    background-color: #9c2c1a;
}

/* This is full for the announcement box */
@media screen and (min-width:768px) {
    .announcement {
        height: 350px;
        display: flex;
        position: relative;
    }

    #offertag {
        position: relative;
        right: 18%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .announcement img {
        object-fit: fill;
        position: absolute;
        left: 20%;
        height: 250px;
        width: 400px;
        bottom: 14%;
        border-radius: 30px;
    }

}

@media screen and (max-width:768px) {
    #banner {
        width: 95%;
        object-fit: fill;
        height: 200px;
        margin: 10px 0;
        margin-left: 12px;
    }
}

/* Newsletter Heading */
.newsletter-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 3px 3px 0 #ffcc80, 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.newsletter-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Input Box */
.newsletter-input {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 15px;
    background-color: #f44336;
    color: #fff8e1;
    width: 80%;
    max-width: 700px;
    font-size: 1rem;
    border: 2px solid #ffcc80;
    box-shadow: inset 1px 1px 4px #b71c1c, 3px 3px 10px rgba(0, 0, 0, 0.2);
    outline: none;
}

.newsletter-input::placeholder {
    color: #ffe0b2;
    font-style: italic;
}

.newsletter-button {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff8e1;
    /* Creamy off-white for clear text */
    background-color: #b71c1c;
    /* Deep spicy red */
    border: none;
    border-radius: 30px;
    box-shadow: 0 8px 0 #8e0000, 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: popBounce 1.2s ease infinite alternate;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #ffecb3;
}

/* Hover  */
.newsletter-button:hover {
    background-color: #ffc107;
    /* Golden yellow */
    color: #5b0000;
    /* Deep red text */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 0 #c67c00, 0 12px 22px rgba(255, 200, 0, 0.45);
}

/*  bounce animation */
@keyframes popBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-2px);
    }
}


.footer {
    background-color: #381601;
    height: 500px;
    margin-top: 8%;
    color: #DFAE58;
}

.footer h3 {
    color: #DFAE58;
}