﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: #f7f3ee;
    color: #25211d;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 76px;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

    .site-header:hover,
    .site-header.scrolled {
        background: rgba(247, 243, 238, 0.92);
        backdrop-filter: blur(10px);
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }
    /* Make header text white when header is transparent over the hero */
    .site-header:not(.scrolled):not(:hover) .desktop-nav a,
    .site-header:not(.scrolled):not(:hover) .nav-link,
    .site-header:not(.scrolled):not(:hover) .icon-button,
    .site-header:not(.scrolled):not(:hover) .mobile-menu-button {
        color: white;
    }


.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: opacity 0.25s ease;
}

.logo-white {
    position: absolute;
    opacity: 1;
}

.logo-dark {
    opacity: 0;
}


.site-header:hover .logo-white,
.site-header.scrolled .logo-white {
    opacity: 0;
}

.site-header:hover .logo-dark,
.site-header.scrolled .logo-dark {
    opacity: 1;
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
}

    .desktop-nav a,
    .nav-link {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 15px;
        color: #25211d;
    }

.dropdown-parent {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 34px;
    left: 0;
    width: 360px;
    padding: 24px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #fffaf4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.dropdown-parent:hover .dropdown {
    display: grid;
}

.dropdown h4 {
    margin: 0 0 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown a {
    display: block;
    margin: 8px 0;
    color: #6b6259;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    order: 3;
    margin-left: auto;
}

.icon-button,
.mobile-menu-button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
}

.mobile-menu-button {
    display: none;
    font-size: 28px;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

    .overlay.active {
        display: block;
    }

.mobile-menu,
.cart-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    z-index: 200;
    width: 340px;
    height: 100vh;
    padding: 32px;
    background: #fffaf4;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
}

    .mobile-menu.active,
    .cart-drawer.active {
        right: 0;
    }

    .mobile-menu a {
        display: block;
        margin: 22px 0;
        font-size: 22px;
    }

.close-button {
    border: none;
    background: none;
    font-size: 36px;
    cursor: pointer;
    float: right;
}

/* Hero */

/*.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)), radial-gradient(circle at 30% 20%, #b18b6a, transparent 30%), radial-gradient(circle at 70% 60%, #4f463e, transparent 35%), linear-gradient(135deg, #8a7868, #2f2b27);
}*/
.hero {
    position: relative;
    /*    min-height: calc(100vh - 76px);
*/ min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)), url("assets/hero/hero-ceramics.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9b8064;
}

.hero .eyebrow {
    color: #f1d9bd;
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 400;
}

.hero p {
    max-width: 640px;
    margin: 24px auto;
    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons,
.button-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    transition: 0.25s ease;
}

.primary-button {
    border: 1px solid #25211d;
    background: #25211d;
    color: white;
}

    .primary-button:hover {
        background: #4b3b2e;
    }

.secondary-button {
    border: 1px solid white;
    color: white;
    background: transparent;
}

    .secondary-button:hover {
        background: white;
        color: #25211d;
    }

.outline-button {
    border: 1px solid #25211d;
    background: transparent;
}

    .outline-button:hover {
        background: #25211d;
        color: white;
    }

.full-width {
    width: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    border: 1px solid white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

/* General Sections */

.intro-section {
    padding: 110px 24px 70px;
    text-align: center;
}

    .intro-section.alt {
        background: #efe7dc;
    }

.intro-text {
    max-width: 820px;
    margin: 0 auto;
}

    .intro-text h2,
    .story-content h2,
    .section-header h2,
    .showcase-text h2,
    .featured-info h2,
    .feature-banner h2 {
        margin: 0 0 18px;
        font-size: clamp(32px, 4vw, 58px);
        font-weight: 400;
        line-height: 1.05;
    }

    .intro-text p,
    .story-content p,
    .showcase-text p,
    .featured-info p {
        font-size: 18px;
        line-height: 1.8;
        color: #6b6259;
    }

.text-link {
    display: inline-block;
    margin-top: 10px;
    border-bottom: 1px solid currentColor;
}

/* Products */

.product-section {
    padding: 70px 42px;
}

.section-header {
    max-width: 1320px;
    margin: 0 auto 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #25211d;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.product-carousel {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 18px;
}

    .product-carousel::-webkit-scrollbar {
        height: 8px;
    }

    .product-carousel::-webkit-scrollbar-thumb {
        background: #b6a28c;
    }

.product-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    position: relative;
    min-width: 280px;
}

.product-image,
.story-thumb,
.story-image,
.showcase-image,
.large-preview {
    background-size: cover;
    background-position: center;
}

.product-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    background: #ddd0c1;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-card h3 {
    margin: 14px 0 6px;
    font-size: 18px;
    font-weight: 400;
}

.product-card p {
    margin: 0 0 12px;
    color: #6b6259;
}

.product-card button {
    width: 100%;
    padding: 12px;
    border: 1px solid #25211d;
    background: transparent;
    cursor: pointer;
}

    .product-card button:hover {
        background: #25211d;
        color: white;
    }

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center {
    text-align: center;
    margin-top: 34px;
}

/* CSS placeholder images */

.clay-1 {
    background: radial-gradient(circle, #ded2c4, #8d6f59);
}

.clay-2 {
    background: radial-gradient(circle, #e8e1d8, #b79b82);
}

.clay-3 {
    background: radial-gradient(circle, #a4a58c, #403a31);
}

.clay-4 {
    background: radial-gradient(circle, #f2eee9, #a28f7d);
}

.clay-5 {
    background: radial-gradient(circle, #d3b18d, #5e493b);
}

.clay-6 {
    background: radial-gradient(circle, #e4d8c9, #6c5848);
}

.clay-7 {
    background: radial-gradient(circle, #c6d1c2, #536154);
}

.clay-8 {
    background: radial-gradient(circle, #b8aea1, #37332f);
}

.clay-9 {
    background: radial-gradient(circle, #ede4d8, #8d7b6a);
}

.clay-10 {
    background: radial-gradient(circle, #d8cab8, #1f1d1b);
}

/* Story */

.story-section {
    padding: 100px 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: #fffaf4;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.story-image {
    min-height: 520px;
}

.image-a {
    /*    background: linear-gradient(135deg, #9c8069, #e5d4c1);*/
    background-image: url("assets/studio/CeramicStudio-01.jpg");
}

.image-b {
    margin-top: 70px;
    /*background: linear-gradient(135deg, #4b463f, #c4ad96);*/
    background-image: url("assets/studio/CeramicStudio-02.jpg");
}

.story-content {
    max-width: 560px;
}

/* Banner */

.feature-banner {
    min-height: 460px;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4)), linear-gradient(135deg, #b28b69, #3b312a);
}

    .feature-banner .eyebrow {
        color: #f7dec2;
    }

/* Showcase */

.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.showcase-image {
    /*background: linear-gradient(135deg, #d7c3ae, #3a332d);*/
        background-image: url("assets/showcase/plates-showcase.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    
}

.showcase-text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f3ee;
}

/* Featured Product */

.featured-product {
    padding: 100px 42px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
    background: #fffaf4;
}

.large-preview {
    height: 640px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ddd0c1;
}

.thumb-row {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.thumb {
    width: 76px;
    height: 76px;
    border: 2px solid transparent;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .thumb.active,
    .thumb:hover {
        border-color: #25211d;
    }

.price {
    font-size: 24px;
    color: #25211d !important;
}
.descr {
    font-size: 24px;
    color: #25211d !important;
}

/* Stories */

.stories-section {
    padding: 90px 42px;
}

.stories-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.story-thumb {
    height: 280px;
    margin-bottom: 18px;
}

.story-1 {
    background: linear-gradient(135deg, #bda48b, #4a4038);
}

.story-2 {
    background: linear-gradient(135deg, #e3d6c8, #76614d);
}

.story-3 {
    background: linear-gradient(135deg, #c1b8aa, #312e2a);
}

.story-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px;
}

.story-card p {
    color: #6b6259;
    line-height: 1.6;
}

/* Footer */

.site-footer {
    padding: 70px 42px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 42px;
    background: #25211d;
    color: #f7f3ee;
}

    .site-footer h3,
    .site-footer h4 {
        margin-top: 0;
        font-weight: 400;
    }

    .site-footer a {
        display: block;
        margin: 10px 0;
        color: #d8c7b4;
    }

    .site-footer p {
        color: #d8c7b4;
        line-height: 1.7;
    }

.newsletter-form {
    display: flex;
    gap: 8px;
}

    .newsletter-form input {
        min-width: 0;
        flex: 1;
        padding: 12px;
        border: none;
    }

    .newsletter-form button {
        padding: 12px 16px;
        border: 1px solid #f7f3ee;
        background: transparent;
        color: #f7f3ee;
        cursor: pointer;
    }

.footer-bottom {
    padding: 20px 42px;
    background: #181512;
    color: #d8c7b4;
}




.footer-contact-info {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
}

    .footer-contact-info p {
        margin: 0 0 12px;
    }

    .footer-contact-info strong {
        color: #f7f3ee;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .footer-contact-info a {
        display: inline;
        color: #d8c7b4;
    }




/* Cookie */

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 300;
    padding: 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fffaf4;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

    .cookie-banner.active {
        display: flex;
    }

    .cookie-banner button {
        padding: 10px 18px;
        border: 1px solid #25211d;
        background: transparent;
        cursor: pointer;
    }

/* Responsive */

@media (max-width: 900px) {
    .desktop-nav,
    .header-actions .icon-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-header {
        padding: 0 22px;
    }

    .story-section,
    .split-showcase,
    .featured-product,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .showcase-text {
        padding: 50px 28px;
    }

    .product-grid,
    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .large-preview {
        height: 440px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 42px;
    }

    .product-section,
    .stories-section,
    .story-section,
    .featured-product {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-images {
        grid-template-columns: 1fr;
    }

    .story-image {
        min-height: 320px;
    }

    .image-b {
        margin-top: 0;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*body {
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
    font-size: 16px;
    margin-top: 0;
}

p {
    color: rgb(107, 114, 128);
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.card {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid lightgray;
    border-radius: 16px;
}

    .card p:last-child {
        margin-bottom: 0;
    }
*/