body {
    font-family: 'Montserrat', sans-serif;
    padding: 40px;
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%); 
    color: #F5F0E8;
}
Nav a {
    color: #C9A84C;
    text-decoration: none;
}
section {
    margin-bottom: 60px;
}
section div {
    background-color: #3D2B1F;
    padding: 20px;
    border-radius: 8px;
}
nav a:hover {
    color: #F5F0E8;
}
.products-grid div {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    width: 300px;
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.4);
}
section div:hover {
    transform: translateY(-10px)
}
nav{
    position:sticky;
    top: 0;
    background-color: #1A1A1A;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
}
section div a {
    display: inline-block;
    background-color: #C9A84C;
    color: #1A1A1A;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}
section div a:hover {
    background-color: #F5F0E8;
    transform: translateY(-3px);
}
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    justify-content: center;
    align-content: center;
    background: none;
    padding: 0;
}
section div img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}
h2 {
    color: #C9A84C;
    font-family:'Cormorant Garamond', serif;
    margin-bottom: 15px;
}
section {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    scroll-margin-top: 80px
}
footer {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #3D2B1F;
    padding-top: 20px;
    margin-top: 40px;
}
footer p:last-child {
    opacity: 0.6;
}
section div img {
    transition: scale 0.3s ease;
}
section div:hover img {
    transform: scale(1.05);
}
section div p{
    margin-bottom: 15px;
}
h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #F5F0E8;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #3D2B1F;
    background-color: #3D2B1F;
}

.social-links img {
    width: 24px;
    height: 24px;
}
.social-links a:hover {
    background-color: #3D2B1F;
}
.social-links a:last-child {
    border-bottom: none;
}
.privacy-box {
    background-color: #3D2B1F;
    padding: 20px;
    border-radius: 8px;
}
.contact-box {
    background-color: #3D2B1F;
    padding: 20px;
    border-radius: 8px;
}
.contact-box p {
    margin-bottom: 15px;
}

.contact-box a {
    display: inline-block;
    background-color: #C9A84C;
    color: #1A1A1A;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.contact-box a:hover {
    background-color: #F5F0E8;
    transform: translateY(-3px);
}
.contact-box,
.privacy-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}
.contact-box:hover,
.privacy-box:hover {
    transform: translateY(-5px);
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-color: #1A1A1A;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeInImage 2s ease forwards, kenBurns 20s ease-in-out infinite alternate;
    animation-delay: 1.5s;
}
.genre-title {
    color: #C9A84C;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.genre-row {
    margin-bottom: 50px;
}

.genre-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
}

.genre-scroll div {
    flex: 0 0 auto;
    scroll-snap-align: start;
}
.genre-scroll div {
    width: 180px;
}

.genre-scroll div img {
    height: 180px;
}

.genre-scroll div h3 {
    font-size: 16px;
}

.genre-scroll div p {
    font-size: 13px;
    line-height: 1.4;
}
@keyframes fadeInImage {
  from {opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeOutText 1s ease forwards;
    animation-delay: 2s;
}
@keyframes fadeOutText {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.15;
    }
}
.hero-content h1 {
    color: #F5F0E8;
    font-size: 56px;
    text-shadow:0 2px 20px rgba(0, 0, 0, 0.8);
}
.scroll-hint {
    color: #F5F0E8;
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
@media (max-width: 768px) {
    .products-grid {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .products-grod dov {
        width: 90%;
    }

    h1 {
        font-size: 32px;
        text-shadow: 0 0 12px rgba(201, 168, 76, 0,30);
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
    }
    nav a {
        font-size: 14px;
    }
    body {
        padding: 20px;
    }
    .social-links a {
        font-size: 14px;
        padding: 8px;
    }
    h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    section div a {
        padding: 10px 20px;
        font-size: 14px;
    }
    section {
        margin-bottom: 30px;
        padding: 15px;
    }
    section div img {
        height: 200px;
    }
    h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    section div p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    section p {
        font-size: 15px;
        line-height: 1.6;
    }
    .contact-box p,
    .privacy-box p {
        font-size: 14px;
    }
    .social-link img {
        width: 20px;
        height: 20px;
    }
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.4;
        display: none;
    }
    .hero {
        height: auto;
        aspect-ratio: 9 / 16;
        padding-top: 100px;
        padding-bottom: 40px;
        box-sizing: border-box;   
    }
    .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/hero-mobile.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: fadeInImage 2s ease forwards;
    background-size: 110% auto;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/hero-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        animation: fadeInImage 2s ease forwards;
    }
    .hero {
    height: auto;
    aspect-ratio: 9 / 16;
}
    .hero-content h1 {
        display: none;
    }
}