/* --- CSS VARIABLES & RESET --- */
:root {
    /* Palette */
    --color-gold: #b38e57;
    --color-gold-light: #c9a36b;
    --color-gold-dark: #967540;
    --color-bg: #F9F8F6; /* Creme/Off-white */
    --color-bg-secondary: #ffffff;
    --color-text-main: #2C2C2C;
    --color-text-muted: #666666;
    --color-border: #E5E5E5;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-spacing: clamp(4rem, 8vw, 8rem);
    --border-radius: 12px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 50px -10px rgba(179, 142, 87, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.small-container { max-width: 800px; }

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 142, 87, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-border);
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* --- NAVIGATION & LANG SELECTOR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(249, 248, 246, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.logo-img {
    height: 35px;        /* adjust as needed */
    width: auto;         /* keeps proportions */
    display: block;
}

.logo {
    display: flex;
    align-items: center;
	gap: 8px;
}


.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo .dot { color: var(--color-gold); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.nav-links a:hover, .nav-links a.active { color: var(--color-gold); }

/* Language Selector Styles */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
    transition: var(--transition-fast);
    padding: 2px;
}

.lang-btn:hover { color: var(--color-gold); }

.lang-btn.active {
    color: var(--color-text-main);
    font-weight: 600;
    border-bottom: 1px solid var(--color-gold);
}

.sep { color: #ddd; font-size: 0.8rem; }

.btn-nav {
    background: var(--color-text-main);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav:hover { background: var(--color-gold); }

/* Mobile Menu */
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
    display: block; width: 25px; height: 2px;
    background: var(--color-text-main); margin: 5px 0;
    transition: 0.3s;
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 140px;
    padding-bottom: var(--section-spacing);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tags {
    margin-bottom: 2.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.separator { color: var(--color-gold); }

.hero-visual { position: relative; }

.hero-card-stack {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
}

.hero-img-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow-soft);
}

.glass-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    min-width: 200px;
    border: 1px solid rgba(255,255,255,0.5);
    animation: float 6s ease-in-out infinite;
}

.glass-card span { font-size: 0.7rem; text-transform: uppercase; color: var(--color-text-muted); }
.glass-card h4 { font-family: var(--font-serif); margin: 0.2rem 0 0.5rem; }
.glass-card a { font-size: 0.85rem; color: var(--color-gold); font-weight: 500; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- PRODUCTS --- */
.products-section { padding: var(--section-spacing) 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { color: var(--color-text-muted); margin-top: 0.5rem; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Updated Image Wrapper for Gallery Trigger */
.img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer; /* Indicates Clickable */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .img-wrapper img { transform: scale(1.05); }

/* Overlay on Hover */
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.product-card:hover .img-overlay { opacity: 1; }

.view-icon {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.view-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-content { padding: 1.5rem; flex-grow: 1; }
.card-content ul { margin-top: 0.5rem; }
.card-content li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
    padding-left: 10px;
    position: relative;
}
.card-content li::before {
    content: "·";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--color-gold);
}

/* --- ABOUT --- */
.about-section {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-text p { margin-bottom: 1.5rem; color: var(--color-text-muted); }

.value-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-gold);
    transition: transform 0.3s ease;
}

.value-card:hover { transform: translateX(10px); }
.value-card h4 { color: var(--color-gold-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* --- FAQ --- */
.faq-section { padding: var(--section-spacing) 0; }

details {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

details:hover { background: #fffbf5; }

summary {
    list-style: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s;
}

details[open] summary::after { transform: rotate(45deg); }

details .content {
    margin-top: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- CONTACT --- */
.contact-section { padding: var(--section-spacing) 0; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.styled-form { margin-top: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    background: #FAFAFA;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(179, 142, 87, 0.1);
}

.full-width { width: 100%; }

.info-card {
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.contact-link {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}
.contact-link:hover { color: var(--color-gold); text-decoration: underline; }

.mt-large { margin-top: 2.5rem; }
.mini-about { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #ddd; font-size: 0.9rem; color: #888; }

/* --- FOOTER --- */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- LIGHTBOX MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); /* Dark background */
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#modal-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

/* Modal Controls */
.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2002;
}

.modal-close:hover { color: var(--color-gold); }

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 20px;
    transition: 0.2s;
    z-index: 2001;
}

.modal-nav:hover { color: var(--color-gold); }
.prev { left: 10px; }
.next { right: 10px; }

/* --- ANIMATIONS (Reveal) --- */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .hero-grid, .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .hero-section { text-align: center; padding-top: 120px; min-height: auto; }
    .hero-actions { justify-content: center; }
    .tags { justify-content: center; }
    .hero-img-main { height: 400px; }
    .glass-card { right: 50%; transform: translateX(50%); bottom: -20px; width: 80%; }
    
    .navbar .btn-nav, .nav-links { display: none; }
    
    .hamburger { display: block; z-index: 1001; }
    
    /* Mobile Menu Active State */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        justify-content: center;
        padding-top: 60px;
        align-items: center;
    }
    
    .nav-links.mobile-active .lang-selector { margin: 1rem 0; }
    .nav-links.mobile-active a { font-size: 1.5rem; }
    .nav-links.mobile-active .btn-nav { display: block; margin-top: 1rem; }
    
    /* Mobile Modal adjustments */
    .modal-nav { font-size: 2rem; padding: 0 10px; }
    .prev { left: 0; }
    .next { right: 0; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-wrapper { padding: 1.5rem; }
    .glass-card { display: none; }
}


.form-status {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    transition: 0.3s ease;
}

.form-status.success {
    color: #2f7a3e;
}

.form-status.error {
    color: #b84a4a;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    transition: 0.3s ease;
}

.form-status.success {
    color: #2f7a3e;
}

.form-status.error {
    color: #b84a4a;
}

/* Modal */

.form-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.form-modal.open {
    display: flex;
}

.form-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.form-modal-dialog {
    position: relative;
    max-width: 420px;
    width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 24px 22px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 1;
    text-align: left;
}

.form-modal-dialog h3 {
    margin-bottom: 8px;
}

.form-modal-dialog p {
    font-size: 0.95rem;
    color: var(--muted);
}

.form-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.recaptcha-disclaimer{
  margin-top: 12px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.35;
}
.recaptcha-disclaimer a{
  text-decoration: underline;
}

/* Hide reCAPTCHA v3 badge */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

