/* Variables & Theme */
:root {
    --bg-main: #fdf8f4;
    /* Light creamy brown / playful off-white */
    --bg-card: #ffffff;
    --text-primary: #5c4033;
    /* Dark brown for readability */
    --text-secondary: #8b5a2b;
    /* Medium brown */
    --accent-primary: #d2b48c;
    /* Tan / soft brown */
    --accent-secondary: #ffb347;
    /* Playful soft orange/yellow */
    --accent-hover: #ff9d00;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    min-height: calc(100vh - 160px);
    /* Fill screen minus header/footer for other pages */
}

/* Home Section tweaks */
.hero.section {
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-hover);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-secondary);
    border-radius: 2px;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    /* playful rounded borders */
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.5);
}

/* Header & Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--accent-hover);
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent-hover);
    font-style: italic;
}

.logo-subtext {
    font-size: 0.55rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 179, 71, 0.15);
    color: var(--accent-hover);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, var(--bg-main) 100%);
    position: relative;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Services Section */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(210, 180, 140, 0.3);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
    box-shadow: 0 15px 35px rgba(92, 64, 51, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--accent-hover);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
}

/* Gallery Section */
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-container {
    padding-top: 100px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(92, 64, 51, 0.1);
}

.gallery-img:hover {
    transform: scale(1.05) rotate(1deg);
    /* playful rotation */
    box-shadow: 0 15px 30px rgba(92, 64, 51, 0.15);
    z-index: 10;
    position: relative;
}

/* Testimonials Section */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px dashed rgba(210, 180, 140, 0.5);
    /* Playful dashed border */
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(92, 64, 51, 0.05);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(255, 179, 71, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card .comment {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.testimonial-card .stars {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-container {
    padding-top: 100px;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(210, 180, 140, 0.2);
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-main);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
}

/* Footer */
footer {
    background-color: rgba(92, 64, 51, 0.05);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(210, 180, 140, 0.2);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-logo span {
    color: var(--accent-hover);
    font-style: italic;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 248, 244, 0.98);
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Product Mockup Cards */
.mockup-card {
    padding: 0;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #f6eada;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    background-color: #ffffff;
    transition: var(--transition);
}

.mockup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.mockup-img-wrapper {
    background-color: #fcf8f3;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
}

.mockup-img-wrapper img {
    height: 160px;
    width: auto;
    object-fit: contain;
}

.mockup-text {
    padding: 30px 25px 40px 25px;
}

.mockup-text h3 {
    font-family: var(--font-heading);
    color: #4a2c11;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mockup-text p {
    font-family: var(--font-body);
    color: #8c7662;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Language Button */
.lang-btn {
    background: none;
    border: 1px solid var(--accent-secondary);
    border-radius: 20px;
    padding: 5px 15px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background-color: var(--accent-secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 15px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background-color: var(--bg-card);
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(92, 64, 51, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(210, 180, 140, 0.2);
    overflow: hidden;
    z-index: 1001;
}

.lang-dropdown-content a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lang-dropdown-content a:hover {
    background-color: rgba(255, 179, 71, 0.1);
    color: var(--accent-hover);
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide default google translate bar */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}