.hero,
.nav-links,
nav {
    display: flex
}

.btn,
.nav-links a {
    text-decoration: none
}

.btn,
.logo,
.product-price {
    font-weight: 700
}

.coming-soon,
.contact-item,
.hero,
.section-title,
.service-card,
footer {
    text-align: center
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa
}

.btn,
.hero,
.logo,
header {
    color: #fff
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

header {
    background: rgb(217 170 95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

nav {
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.8rem
}

.nav-links {
    list-style: none;
    gap: 2rem
}

.nav-links a {
    color: #fff;
    transition: color .3s
}

.nav-links a:hover {
    color: #e42525;
    text-shadow: 1px 1px 3px rgba(228, 37, 37, .714)
}

.hero {
    height: 100vh;
    background-image: url('https://res.cloudinary.com/de3xvrrq5/image/upload/v1753744918/backgroundFraiseMadeleine_u6xhpc.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    position: relative
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5)
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5)
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(217 170 95);
    border-radius: 25px;
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(217, 170, 95, .3)
}

.btn:hover {
    background: rgba(217, 170, 95, .734);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 170, 95, .4), 0 4px 10px rgba(0, 0, 0, .1)
}

section {
    padding: 4rem 0
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50
}

.about,
.gallery,
.services {
    background: #fff
}

.gallery-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: .3s;
    border: 1px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(217, 170, 95, .15)
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 170, 95, .25), 0 5px 15px rgba(0, 0, 0, .1)
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem
}

.products {
    background: #ecf0f1
}

.contact-info,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.gallery-item,
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(217, 170, 95, .2);
    transition: .3s
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 170, 95, .35), 0 5px 15px rgba(0, 0, 0, .1)
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem
}

.gallery-info,
.product-info {
    padding: 1.5rem
}

.gallery-info h3,
.product-info h3 {
    color: #2c3e50;
    margin-bottom: .5rem
}

.product-price {
    color: #e74c3c;
    font-size: 1.2rem
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.gallery-image-object-fit {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    display: block
}

.gallery-info p {
    color: #666;
    font-size: .9rem
}

.coming-soon {
    background: #ecf0f1
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto
}

.coming-soon-icon {
    font-size: 4rem;
    color: #95a5a6;
    margin-bottom: 1rem
}

.contact,
.contact .section-title,
footer {
    color: #fff
}

.coming-soon h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem
}

.coming-soon p {
    color: #666;
    font-size: 1.1rem
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8
}

.about-image {
    height: 300px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    box-shadow: 0 6px 20px rgba(217, 170, 95, .25);
    overflow: hidden
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px
}

.contact {
    background: rgb(217 170 95)
}

.contact-item {
    padding: 2rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: .3s
}

.contact-item i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem
}

footer {
    background: #d8a24b;
    padding: 2rem 0
}

@media (max-width:768px) {
    .nav-links {
        display: none
    }

    .hero-content h1,
    .section-title {
        font-size: 2rem
    }

    .hero-content p {
        font-size: 1.1rem
    }

    .about-content {
        grid-template-columns: 1fr
    }
}