@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-primary: #f5ebe6;
    /* Main background - soft nude */
    --bg-secondary: #e8d8ce;
    /* Darker nude for cards */
    --arch-color: #d1b8a8;
    /* Darkest beige for arches */
    --accent-dark: #2a2a2a;
    /* Text color */
    --accent-light: #fdfaf8;
    /* Lightest color for feature splitting */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-dark);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Global Navbar */
.navbar {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: var(--arch-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-dark);
}

.logo img {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-nav-shop {
    background-color: var(--bg-secondary);
    padding: 10px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-nav-shop:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

/* Buttons */
.btn-solid {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-dark);
    padding: 14px 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-solid:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero-arch-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background-color: var(--arch-color);
    border-radius: 400px 400px 0 0;
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 900px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* brume */


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.sale-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #b08d57;
}

.btn-shop {
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 10px;
    transition: 0.3s;
}

.product-card:hover .btn-shop {
    background: #333;
}


/* Services Section (Our Categories) */
.services-section {
    padding: 5rem 0 1rem;
    background-color: var(--bg-primary);
    text-align: center;
}

.services-header {
    margin-bottom: 3rem;
}

.services-header p {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #888;
}

.services-header h2 {
    font-size: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-card {
    width: 320px;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 200px 200px 0 0;
    margin-bottom: 2rem;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 0 2rem 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.read-more {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: 1px solid var(--accent-dark);
    padding-bottom: 3px;
}

/* Feature Split Section */
.feature-split {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0;
    min-height: 70vh;
}

.feature-text {
    flex: 1;
    padding: 6rem 10%;
    text-align: center;
}

.feature-text p.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #888;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text p.desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.btn-tan {
    background-color: var(--bg-secondary);
    padding: 12px 35px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    transition: all 0.3s;
}

.btn-tan:hover {
    opacity: 0.8;
}

.feature-image {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.feature-arch-img {
    width: 85%;
    height: 600px;
    background-color: var(--bg-secondary);
    border-radius: 400px 0 0 400px;
    overflow: hidden;
}

.feature-arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Framed Hero Section */
.hero-framed {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: 30px;
    overflow: hidden;
    margin: 6rem auto 1rem;
    max-width: 1100px;
    min-height: 500px;
}

.hero-framed .feature-image {
    flex: 1;
    height: 500px;
    display: flex;
    justify-content: flex-start;
}

.hero-framed .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 400px 400px 0;
}

.hero-framed .feature-text {
    flex: 1;
    padding: 3rem 4rem;
    text-align: left;
}

.hero-framed .feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-framed .feature-text p.desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-btn {
    background-color: var(--accent-dark);
    color: var(--white);
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--accent-dark);
}

/* Popular Grid */
.popular-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.popular-header {
    margin-bottom: 5rem;
}

.popular-header p {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #888;
}

.popular-header h2 {
    font-size: 3rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pop-card {
    text-align: left;
}

.pop-img {
    width: 100%;
    height: 320px;
    margin-bottom: 1.5rem;
    background-color: var(--bg-primary);
}

.pop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.pop-meta div {
    display: flex;
    gap: 1rem;
}

/* Contact Arch */
.contact-arch-section {
    padding: 1rem 0 3rem;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
}

.contact-arch-block {
    background-color: var(--bg-secondary);
    width: 700px;
    padding: 6rem 4rem;
    border-radius: 400px 400px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-arch-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-arch-block p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.6;
}

/* Deep Footer */
.footer-new {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--bg-primary);
    padding: 5rem 20px 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.footer-left {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-left p {
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.email-form {
    display: flex;
}

.email-form input {
    padding: 12px 15px;
    border: none;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
}

.email-form button {
    padding: 12px 25px;
    background-color: var(--bg-secondary);
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.email-form button:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

.footer-right {
    display: flex;
    gap: 5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 2.5;
    opacity: 0.8;
}

.footer-right div {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.75rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-arch-bg {
        width: 400px;
        height: 400px;
    }

    .feature-split {
        flex-direction: column;
    }

    .feature-arch-img {
        border-radius: 0;
        width: 100%;
        height: 400px;
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-arch-block {
        width: 90%;
        padding: 4rem 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }

    .hero-arch-bg {
        width: 90%;
        height: 350px;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

/* --- Legacy classes for subpages --- */

.page-header {
    background-color: #c2a996;
    /* soft beige */
    padding: 140px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: "Playfair Display", serif;
    /* luxury serif */
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}



.page-header p {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
}

.products-section {
    padding: 4rem 0;
}


.product-info .price {
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--bg-secondary);
    color: var(--accent-dark);
}

.btn-primary:hover {
    opacity: 0.7;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.language-selector a.active {
    font-weight: bold;
    border-bottom: 1px solid var(--accent-dark);
}

/* Keep global footer class intact if some pages use it */
.footer {
    display: block;
}

/* Hide old footer, replaced across site */

/* Contact Page Form fixes */
.contact-section {
    padding: 6rem 0;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--bg-secondary);
    background: var(--bg-primary);
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Box Banner updates to fit new design */
.box-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-color: var(--bg-primary);
}

.box-banner-text-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem;
    max-width: 500px;
}

.box-banner-text-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.box-btn-shop {
    background: var(--accent-dark);
    color: var(--white);
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
}

.box-btn-shop:hover {
    opacity: 0.8;
}

/* --- Entrance Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Base class for elements waiting to scroll into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stagger grid animations when container is visible */
.is-visible .service-card:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.is-visible .service-card:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.is-visible .service-card:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.is-visible .service-card:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.is-visible .service-card:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.is-visible .service-card:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.contact-arch-block {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

.contact-arch-section.is-visible .contact-arch-block {
    opacity: 1;
    transform: translateY(0);
}