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

body {
    font-family: "obviously-variable", sans-serif;
    background: #F5F2EE;
    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); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Marquee */
.marquee {
    position: fixed;
    top: 0;
    width: 100%;
    background: #EDEAE6;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 14px;
    color: #2F2F2F;
    text-transform: uppercase;
    z-index: 1001;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: slideIn 20s linear infinite;
}

@keyframes slideIn {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 40px; /* Hauteur du marquee sur index.html */
    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, top 0.3s ease;
    min-height: 120px;
}

.navbar.sticky {
    top: 40px;
    background: rgba(245, 242, 238, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.no-marquee {
    top: 0; /* Coller la navbar en haut pour les pages sans marquee */
}

.navbar.no-marquee.sticky {
    top: 0; /* Maintenir la navbar collée en haut même en mode sticky */
}

.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);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(245, 242, 238, 0.95);
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    font-size: 14px;
    color: #2F2F2F;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #53603d;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.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: 180px 50px 20px; /* Ajusté pour la navbar */
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #2F2F2F;
}

.navbar.no-marquee ~ .breadcrumb {
    padding: 140px 50px 20px; /* Réduit pour les pages sans marquee (hauteur navbar uniquement) */
}

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

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

.breadcrumb span {
    color: #53603d;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('image/photos généralistes scaraterra/IMG_2493.JPEG') no-repeat center center/cover;
    color: #FFFFFF;
    padding: 0 20px;
    margin-top: 40px; /* Espace pour le marquee */
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.cta {
    display: inline-block;
    padding: 15px 40px;
    background: #53603d;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.cta:hover {
    background: #6B7A4F;
    transform: translateY(-3px);
}

/* About Creator */
.about-creator {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.creator-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.creator-text {
    flex: 1;
}

.creator-text h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease;
}

.creator-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #53603d;
}

.creator-text p {
    font-size: 16px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.creator-text blockquote {
    font-style: italic;
    font-size: 14px;
    color: #53603d;
    border-left: 4px solid #53603d;
    padding-left: 20px;
    margin: 20px 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.creator-image {
    flex: 1;
}

.creator-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.about-creator-2 {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background: #EDEAE6;
}

.creator-content-2 {
    display: flex;
    gap: 50px;
    align-items: center;
}

.creator-text-2 {
    flex: 1;
}

.creator-text-2 h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease;
}

.creator-text-2 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #53603d;
}

.creator-text-2 h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2F2F2F;
    margin: 30px 0 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.creator-text-2 p {
    font-size: 16px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.creator-image-2 {
    flex: 1;
}

.creator-image-2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Creations Section */
.creations {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.creations-header {
    text-align: center;
    margin-bottom: 60px;
}

.creations-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease;
}

.creations-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #53603d;
}

.creations-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.creation-item {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.creation-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.creation-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}

.creation-item:hover img {
    transform: scale(1.05);
}

.creation-item h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

/* Collection Section (pour vases.html et art-table.html) */
.vases-section,
.art-table-section {
    padding: 40px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.vases-header p,
.art-table-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;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.collection-wrapper.alternate-bg {
    background: #EDEAE6;
}

.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: 38px;
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    border-bottom: 3px solid #bfc8a3;
    padding-bottom: 10px;
}

.collection-item {
    display: flex;
    gap: 56px; /* increased gap to give more breathing room between text and images */
    margin-bottom: 70px;
    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: 22px;
    color: #2F2F2F;
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 500;
}

.item-info p {
    font-size: 16px;
    margin-bottom: 12px; /* reduced to create a single blank line before details */
}

/* Dimensions text: one size smaller, italic, spaced from above */
.item-info p.dimensions {
    font-size: 15px; /* one step smaller than normal body text */
    font-style: italic;
    margin-top: 0; /* directly follow the paragraph above */
    margin-bottom: 4px; /* small gap to keep material line visually attached */
    color: #3a3a3a;
}

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

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

.item-gallery {
    flex: 1;
    padding-left: 10px; /* small padding to separate from text */
}

.main-image {
    width: 100%;
    height: 520px; /* slightly taller for better composition */
    object-fit: contain;
    background: #f5f2ee;
    margin-bottom: 14px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    align-items: center;
}

.thumbnail-gallery img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 4px;
}

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

/* Social Section */
.social-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: #EDEAE6;
}

.social-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease;
}

.social-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #53603d;
}

.social-content p {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

/* Social subtitle directly under SUIVEZ-MOI: center and add spacing */
.social-content .social-sub {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 18px;
    opacity: 1; /* ensure visible like heading */
}

/* Material / color line: italic small note under descriptions */
.item-info p.material,
.material {
    font-style: italic;
    color: #5a5a5a; /* slightly muted */
    margin-top: 0; /* no extra gap from dimensions */
    margin-bottom: 12px; /* single blank line after the material line */
    font-size: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 70px;
    height: 70px;
    fill: #2F2F2F;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover svg {
    fill: #53603d;
}

/* Carousel */
.carousel {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.fade-slides { position: relative; }
.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.fade-slide.active { opacity: 1; visibility: visible; position: relative; }
.fade-slide img { width: 100%; height: 520px; object-fit: cover; display: block; }
/* Afficher les images du carrousel en entier (moins coupées) */
.fade-slide img {
    object-fit: contain;
    background: #f5f2ee;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 242, 238, 0.8);
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    color: #2F2F2F;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(245, 242, 238, 1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Fade carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    padding: 0;
}
.carousel-dots .dot.active { background: #53603d; }

/* make arrows more visible on images */
.carousel-btn { background: rgba(255,255,255,0.85); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* Contact Section */
.contact-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease;
}

.contact-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #53603d;
}

.contact-intro {
    font-size: 18px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #D3D3D3;
    border-radius: 4px;
    font-size: 16px;
    font-family: "obviously-variable", sans-serif;
}

/* Hors Série page styles - harmonised with collection pages */
.hors-serie {
    padding: 40px 50px 80px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

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

.hors-serie .section {
    background: #fff;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.hors-serie .section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #2F2F2F;
}

.hors-serie .section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Gallery layout: main image + column of thumbs on wide screens */
.hors-serie .gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 12px;
}

.hors-serie .gallery .main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.hors-serie .gallery .thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hors-serie .gallery .thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hors-serie .gallery .thumbs img:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

/* Make sections behave like collection-items on small screens */
@media (max-width: 1024px) {
    .hors-serie { padding: 30px 30px 60px; }
    .hors-serie .gallery { grid-template-columns: 1fr; }
    .hors-serie .gallery .thumbs { flex-direction: row; justify-content: center; gap: 8px; }
    .hors-serie .gallery .thumbs img { width: 160px; height: 100px; }
}

@media (max-width: 768px) {
    .hors-serie { padding: 20px; }
    .hors-serie h1 { font-size: 36px; }
    .hors-serie .gallery .main { height: 360px; }
    .hors-serie .gallery .thumbs img { width: 100px; height: 70px; }
}

@media (max-width: 480px) {
    .hors-serie h1 { font-size: 28px; }
    .hors-serie .gallery .main { height: 300px; }
    .hors-serie .gallery .thumbs img { width: 80px; height: 60px; }
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button.cta {
    background: #53603d;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button.cta:hover {
    background: #6B7A4F;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* 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;
}

/* Ensure footer content is centered consistently */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        padding: 25px 20px;
        min-height: 100px;
        top: 40px; /* Ajout d'un espace supplémentaire pour ne pas coller au marquee */
    }
    .navbar.sticky {
        top: 40px; /* Maintenir l'espace en mode sticky */
    }
    .navbar.no-marquee {
        top: 0; /* Coller la navbar en haut sur mobile pour les pages sans marquee */
    }
    .navbar.no-marquee.sticky {
        top: 0; /* Maintenir la navbar collée en haut même en mode sticky */
    }
    .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;
    }
    .dropdown-menu {
        display: none;
        position: static;
        background: none;
        box-shadow: none;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    .dropdown-menu.active {
        display: block;
    }
    .dropdown-menu li {
        padding: 5px 0;
    }
    .breadcrumb {
        padding: 140px 20px 20px; /* Ajusté pour la hauteur de la navbar sur mobile */
    }
    .navbar.no-marquee ~ .breadcrumb {
        padding: 120px 20px 20px; /* Réduit pour les pages sans marquee sur mobile */
    }
    .hero {
        height: calc(80vh - 45px);
        margin-top: 45px; /* Ajusté pour l'espace du marquee */
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-logo {
        width: 250px;
    }
    .about-creator,
    .about-creator-2 {
        padding: 60px 20px;
    }
    .creator-content,
    .creator-content-2 {
        flex-direction: column;
        gap: 30px;
    }
    .creator-image img,
    .creator-image-2 img {
        height: 400px;
    }
    .creator-text h2,
    .creator-text-2 h2 {
        font-size: 28px;
    }
    .creations,
    .vases-section,
    .art-table-section {
        padding: 60px 20px;
    }
    .creations-grid {
        grid-template-columns: 1fr;
    }
    .creation-item img {
        height: 300px;
    }
    .vases-header h1,
    .art-table-header h1 {
        font-size: 36px;
    }
    .vases-header p,
    .art-table-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;
    }
    .social-section,
    .carousel,
    .contact-section {
        padding: 60px 20px;
    }
    .carousel-slide img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-logo {
        width: 200px;
    }
    .cta {
        padding: 12px 30px;
        font-size: 14px;
    }
    .creator-text h2,
    .creator-text-2 h2,
    .creations-header h2,
    .social-content h2,
    .contact-container h2 {
        font-size: 24px;
    }
    .creator-image img,
    .creator-image-2 img,
    .carousel-slide img {
        height: 300px;
    }
    .creation-item h3 {
        font-size: 18px;
    }
    .vases-header h1,
    .art-table-header h1 {
        font-size: 28px;
    }
    .vases-header p,
    .art-table-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;
    }
}
/* About Creator */
.creator-text h2,
.creator-text-2 h2,
.creations-header h2,
.social-content h2,
.contact-container h2,
.vases-header h1,
.art-table-header h1,
.collection h2,
.collection-item h3 {
    font-weight: 500;
}

/* Add spacing between a collection description and the first item */
.collection > p {
    margin-bottom: 24px; /* espace entre la description et le premier élément */
}

/* Justification globale des textes */
p {
    text-align: justify;
    text-justify: inter-word;
}

/* Collaborations page improvements */
.collaborations {
    padding: 60px 20px 80px;
    max-width: 1000px; /* limit line length for better readability */
    margin: 0 auto 80px; /* center the block */
    text-align: left; /* keep text left-aligned for reading */
}

.collaborations h1 {
    font-size: 36px;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #2F2F2F;
}

.collaborations p {
    font-size: 18px;
    line-height: 1.8;
    color: #2F2F2F;
    margin-bottom: 14px;
}

/* Ensure breadcrumb/nav spacing is consistent on pages without marquee */
.navbar.no-marquee ~ .breadcrumb {
    padding: 120px 50px 20px; /* a bit less top padding when no marquee */
}

/* small helper to wrap content inside .collaborations */
.collaborations-content {
    display: block;
    max-width: 760px;
    margin: 0 auto;
}
