﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.7;
    overflow: hidden;
}

#landing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://res.cloudinary.com/sunsetcloud/image/upload/v1768141820/bb_pilnvx.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
}

    #landing-overlay.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    #landing-overlay h1 {
        color: #fff;
        font-size: 3rem;
        text-align: center;
        padding: 20px;
        text-shadow: 0 4px 15px rgba(0,0,0,0.9);
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #e5d5c3;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #2c1810;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

    .nav-links a {
        color: #2c1810;
        text-decoration: none;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .burger span {
        width: 25px;
        height: 2px;
        background: #2c1810;
    }

@media (max-width:768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 30px 20px;
        border-bottom: 1px solid #e5d5c3;
    }

        .nav-links.active {
            display: flex;
        }

    .burger {
        display: flex;
    }

    #landing-overlay h1 {
        font-size: 2rem;
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 140px 20px 60px;
    background: #f0ebe5;
    border-bottom: 2px solid #d4c4b0;
}

    header svg {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 3rem;
        letter-spacing: 6px;
        font-weight: 300;
        color: #2c1810;
        text-align: center;
    }

    header p {
        font-size: 1.3rem;
        color: #5c4a3a;
        margin-top: 15px;
        max-width: 700px;
        text-align: center;
        font-weight: 300;
    }

    header .not-diy {
        margin-top: 25px;
        padding: 12px 30px;
        background: #8b6f47;
        color: #fff;
        font-size: 0.95rem;
        letter-spacing: 1px;
        border-radius: 30px;
    }

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.brands-section {
    background: #2c1810;
    color: #fff;
    padding: 80px 20px;
    margin-top: 80px;
    width: 100%;
    border-top: 4px solid #8b6f47;
    border-bottom: 4px solid #8b6f47;
}

    .brands-section h3 {
        font-size: 2.4rem;
        margin-bottom: 15px;
        font-weight: 400;
        color: #f8f4f0;
        text-align: center;
    }

    .brands-section .subtitle {
        font-size: 1.2rem;
        color: #d4c4b0;
        margin-bottom: 50px;
        font-style: italic;
        font-weight: 300;
        text-align: center;
    }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.brand-card {
    background-color: #fff;
    border: 1px solid #d4c4b0;
    border-radius: 4px;
    aspect-ratio: 1/1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    text-align: center;
}

    .brand-card img {
        max-height: 50px;
        max-width: 85%;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .brand-card .brand-name {
        color: #2c1810;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

.curation-section, .contents-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

    .curation-section h2, .contents-section h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 400;
        color: #2c1810;
    }

.curation-details, .content-category {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e5d5c3;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c1810;
    border-bottom: 2px solid #8b6f47;
    padding-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px 0;
    color: #5c4a3a;
    border-bottom: 1px solid #f0f0f0;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #f8f4f0;
    border-top: 1px solid #d4c4b0;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #5c4a3a;
}

