:root {
    --primary-color: #2b2725;
    --accent-color: #b78a78;
    --bg-color: #fbfaf8;
    --card-bg: #ffffff;
    --text-color: #4a4643;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-padding-top: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Navbar */
.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 5rem;
    gap: 1rem;
    background: rgba(251, 250, 248, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.logo {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5rem;
    position: relative;
    background: linear-gradient(to right, rgba(251, 250, 248, 0.95) 0%, rgba(251, 250, 248, 0.4) 60%, rgba(251, 250, 248, 0) 100%),
        url('https://images.unsplash.com/photo-1605389650058-20ac17232e01?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    padding-top: 5rem;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.3s forwards;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out 0.6s forwards;
}

/* Buttons */
.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
}

.btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(183, 138, 120, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out 0.9s forwards;
}

.btn:hover {
    background-color: #a37664;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(183, 138, 120, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--accent-color);
    width: 100%;
    margin-top: 1rem;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* About Section */
.about {
    padding: 8rem 5rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image {
    flex: 1;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1584916201218-f4242ceb4809?q=80&w=1200&auto=format&fit=crop') center/cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

/* Products Section */
.products {
    padding: 6rem 5rem;
    background-color: #f6f4f0;
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.product-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.img-1 {
    background-image: url('https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?q=80&w=800&auto=format&fit=crop');
}

.img-2 {
    background-image: url('https://images.unsplash.com/photo-1544441893-675973e31985?q=80&w=800&auto=format&fit=crop');
}

.img-3 {
    background-image: url('https://images.unsplash.com/photo-1430931071372-38127bd472b8?q=80&w=800&auto=format&fit=crop');
}

.product-info {
    padding: 2.5rem 2rem;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.product-info p {
    color: #777;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6rem 5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.footer-brand p {
    color: #b5b5b5;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: #b5b5b5;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 400px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 0 2rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero {
        background: linear-gradient(to bottom, rgba(251, 250, 248, 0.85) 0%, rgba(251, 250, 248, 0.7) 100%),
            url('https://images.unsplash.com/photo-1605389650058-20ac17232e01?q=80&w=1000&auto=format&fit=crop') center/cover;
    }

    .about {
        padding: 4rem 2rem;
    }

    .products {
        padding: 4rem 2rem;
    }

    footer {
        padding: 4rem 2rem 2rem;
    }
}