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

body {
    font-family: "obviously-variable", sans-serif;
    background: #EDEAE6;
    color: #2F2F2F;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate3D {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: rgba(245, 242, 238, 0.9);
    z-index: 1000;
    transition: background 0.3s ease;
    min-height: 120px;
}

.navbar:hover {
    background: rgba(245, 242, 238, 1);
}

.scarabee-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.scarabee-logo {
    width: 60px;
    height: auto;
    animation: rotate3D 8s linear infinite;
    transform-style: preserve-3d;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    color: #2F2F2F;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #53603d;
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #2F2F2F;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Breadcrumb */
.breadcrumb {
    padding: 150px 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #2F2F2F;
}

.breadcrumb a {
    color: #2F2F2F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #53603d;
}

.breadcrumb span {
    color: #53603d;
}

/* Vases Section */
.vases-section {
    padding: 40px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.vases-header {
    margin-bottom: 60px;
}

.vases-header h1 {
    font-size: 48px;
    color: #2F2F2F;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.vases-header p {
    font-size: 18px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.collection-wrapper {
    padding: 50px 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #FFF;
}

.collection-wrapper.alternate-bg {
    background: #EDEAE6; /* Fond légèrement plus foncé pour les collections alternées */
}

.collection-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #53603d;
}

.collection {
    max-width: 1200px;
    margin: 0 auto;
}

.collection h2 {
    font-size: 28px;
    color: #2F2F2F;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.collection-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.collection-item:nth-child(1) { animation-delay: 0.2s; }
.collection-item:nth-child(2) { animation-delay: 0.4s; }
.collection-item:nth-child(3) { animation-delay: 0.6s; }

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 24px;
    color: #2F2F2F;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.item-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.material-swatches {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #D3D3D3;
}

.catalog-link {
    display: inline-block;
    font-size: 14px;
    color: #2F2F2F;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #2F2F2F;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.catalog-link:hover {
    color: #53603d;
    border-color: #53603d;
}

.item-gallery {
    flex: 1;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 10px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail-gallery img:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #F5F2EE;
    color: #2F2F2F;
    animation: fadeInUp 1s ease forwards;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        padding: 25px 20px;
        min-height: 100px;
    }
    .scarabee-logo {
        width: 50px;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(245, 242, 238, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .breadcrumb {
        padding: 120px 20px 20px;
    }
    .vases-section {
        padding: 40px 20px 40px;
    }
    .vases-header h1 {
        font-size: 36px;
    }
    .vases-header p {
        font-size: 16px;
    }
    .collection-wrapper {
        padding: 30px 20px;
    }
    .collection h2 {
        font-size: 22px;
    }
    .collection-item {
        flex-direction: column;
    }
    .main-image {
        height: 400px;
    }
    .thumbnail-gallery img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .vases-header h1 {
        font-size: 28px;
    }
    .vases-header p {
        font-size: 14px;
    }
    .collection h2 {
        font-size: 18px;
    }
    .item-info h3 {
        font-size: 20px;
    }
    .main-image {
        height: 300px;
    }
    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }
}