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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #3a2a1a;
    background: #faf7f3;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Header ===== */
header {
    background: rgba(42, 32, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

nav a:hover {
    color: #d4a763;
}

nav a.active {
    color: #d4a763;
}

/* ===== Hero Section (fullscreen) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 20, 10, 0.3) 0%,
        rgba(30, 20, 10, 0.2) 50%,
        rgba(30, 20, 10, 0.6) 100%
    );
}

.hero h1,
.hero p {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    font-weight: 400;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    font-style: italic;
    opacity: 0.9;
}

/* ===== Page Header ===== */
.page-header {
    padding: 8rem 2rem 4rem;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 20, 10, 0.4) 0%,
        rgba(30, 20, 10, 0.6) 100%
    );
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* ===== Section ===== */
.section {
    margin-bottom: 5rem;
}

.section h2 {
    font-size: 2.2rem;
    color: #3a2a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: justify;
    color: #5a4a3a;
}

/* ===== Features Grid ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 42, 26, 0.1);
}

.feature-card h3 {
    color: #3a2a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a4a3a;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

/* ===== CTA Section ===== */
.cta-section {
    background: #3a2a1a;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-radius: 12px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #d4a763;
    color: #2a2016;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #e0b873;
    transform: translateY(-2px);
}

/* ===== Values Grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #3a2a1a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    text-align: center;
    color: #5a4a3a;
    font-size: 0.95rem;
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: #3a2a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.highlight-box p {
    opacity: 0.9;
}

/* ===== About Section ===== */
.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    color: #3a2a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: justify;
    color: #5a4a3a;
}

/* ===== Products ===== */
.intro-text {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #6b5b4b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e0d8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(58, 42, 26, 0.12);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #5a4a3a 0%, #3a2a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-content {
    padding: 1.8rem;
}

.product-content h3 {
    font-size: 1.5rem;
    color: #3a2a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-content p {
    font-size: 0.95rem;
    color: #6b5b4b;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #5a4a3a;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.product-label {
    display: inline-block;
    background: #d4a763;
    color: #2a2016;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== Highlight Text ===== */
.highlight-text {
    background: #f0ebe4;
    padding: 2rem;
    border-left: 4px solid #d4a763;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-text p {
    margin: 0;
    font-style: italic;
    color: #3a2a1a;
    font-size: 1.15rem;
}

/* ===== Experience Cards ===== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
    text-align: center;
    transition: transform 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    color: #3a2a1a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.experience-card p {
    text-align: center;
    font-size: 0.95rem;
    color: #5a4a3a;
}

/* ===== Info Box ===== */
.info-box {
    background: #3a2a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.info-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    opacity: 0.9;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a763;
    font-size: 1.4rem;
    line-height: 1.2;
}

/* ===== Two Column Layout ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.column-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
}

.column-box h3 {
    color: #3a2a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.column-box ul {
    list-style: none;
    padding: 0;
}

.column-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a4a3a;
}

.column-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
}

.contact-info h2 {
    color: #3a2a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #faf7f3;
    border-radius: 8px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item .icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    min-width: 45px;
    text-align: center;
}

.info-item .content h3 {
    color: #3a2a1a;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.info-item .content p {
    color: #6b5b4b;
    font-size: 0.95rem;
}

.info-item .content a {
    color: #8b6914;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item .content a:hover {
    color: #3a2a1a;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
}

.contact-form h2 {
    color: #3a2a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #3a2a1a;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d8d0c8;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #faf7f3;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a763;
    background: white;
}

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

.submit-btn {
    background: #3a2a1a;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #5a4a3a;
    transform: translateY(-2px);
}

/* ===== Additional Info ===== */
.additional-info {
    background: #f0ebe4;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.additional-info h3 {
    color: #3a2a1a;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.additional-info p {
    font-size: 1.05rem;
    color: #5a4a3a;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #3a2a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #d4a763;
    transform: scale(1.1);
}

/* ===== Language Switcher ===== */
.lang-switcher {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.lang-switcher .lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.lang-switcher .lang-current:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-switcher .lang-current .flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-switcher .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    z-index: 1002;
    min-width: 160px;
    overflow: hidden;
    border: 1px solid #e8e0d8;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-switcher .lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #3a2a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: background 0.2s;
}

.lang-switcher .lang-dropdown a .flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-switcher .lang-dropdown a:hover {
    background: #f0ebe4;
}

.lang-switcher .lang-dropdown a.active {
    background: #f0ebe4;
    color: #3a2a1a;
    font-weight: bold;
}

/* ===== Family Section ===== */
.family-section {
    margin-bottom: 3rem;
}

.family-section h2 {
    font-size: 2.2rem;
    color: #3a2a1a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.family-member {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e0d8;
    transition: transform 0.3s;
}

.family-member:hover {
    transform: translateY(-5px);
}

.family-member img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.family-member h3 {
    color: #3a2a1a;
    margin: 1.2rem 0 0.5rem;
    font-size: 1.3rem;
    padding: 0 1.5rem;
    font-weight: 600;
}

.family-member p {
    color: #6b5b4b;
    font-size: 0.9rem;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.family-group-photo {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.family-group-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ===== Photo-Text Row ===== */
.photo-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.photo-text-row.reverse {
    direction: rtl;
}

.photo-text-row.reverse > * {
    direction: ltr;
}

.photo-side img {
    width: 100%;
    border-radius: 12px;
}

.text-side p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: justify;
    color: #5a4a3a;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 10, 0.97);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: white;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.8rem 1rem;
    border-radius: 50%;
    z-index: 2001;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ===== Footer ===== */
footer {
    background: #2a2016;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 0;
    font-size: 0.9rem;
}

/* ===== Mobile Overlay ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: #2a2016;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 3rem;
    }

    nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav a {
        display: block;
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: white;
        font-size: 2.5rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }

    .hero {
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .page-header {
        padding: 6rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .family-grid {
        grid-template-columns: 1fr;
    }

    .family-member img {
        height: 300px;
    }

    .family-group-photo img {
        height: 280px;
    }

    .photo-text-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-text-row.reverse {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .lang-switcher {
        margin-left: 0.5rem;
    }

    .lang-switcher .lang-dropdown {
        right: 0;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.5rem 0.7rem;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

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

    .gallery-item img {
        height: 240px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}
