/* ===== CSS Variables & Theme ===== */
:root {
    --radius: 0.5rem;
    --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
    
    /* Colors - Light Mode */
    --background: #fdfaf5;
    --foreground: #262015;
    --card: #ffffff;
    --card-foreground: #262015;
    --primary: #2d2520;
    --primary-foreground: #faf8f6;
    --secondary: #f5f2ee;
    --secondary-foreground: #2d2520;
    --muted: #f2f0ec;
    --muted-foreground: #736d66;
    --accent: #f2f0ec;
    --accent-foreground: #2d2520;
    --gold: #c89e4a;
    --gold-foreground: #262015;
    --destructive: #c73737;
    --destructive-foreground: #faf8f6;
    --border: #e5e0d9;
    --input: #e5e0d9;
    --ring: #c89e4a;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1f1a15 0%, #38322b 100%);
    --gradient-gold: linear-gradient(135deg, #d4a85a 0%, #b68a3d 100%);
    
    /* Shadows */
    --shadow-elegant: 0 20px 50px -20px rgba(38, 32, 21, 0.35);
    --shadow-gold: 0 12px 40px -10px rgba(200, 158, 74, 0.5);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--foreground);
}

/* ===== Utilities ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(255, 250, 246, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    color: var(--gold-foreground);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--foreground);
}

.cta-button {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gradient-gold);
    color: var(--gold-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    color: var(--gold-foreground);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Hero Section ===== */
.hero {
    background-image: url('images/kitchen/2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6rem 1.5rem;

    text-align: center;

    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 158, 74, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fade-up 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: calc(var(--radius) - 2px);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--gold-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 158, 74, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
}

.btn-secondary:hover {
    background: var(--primary-foreground);
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1fab3f;
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about {
    padding: 5rem 1.5rem;
    background-color: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3,
.why-choose-us h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

.about-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--foreground);
    font-weight: 500;
}

/* ===== Services Section ===== */
.services {
    padding: 5rem 1.5rem;
    background-color: var(--card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Photo-based service cards */
.service-card-photo {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 4 / 3;
}

.service-card-photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.service-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

/* Fallback gradient when image is missing */
.service-card-img:not([style]) {
    background: var(--gradient-hero);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 18, 12, 0.88) 0%, rgba(22, 18, 12, 0.25) 55%, transparent 100%);
    transition: background 0.35s ease;
}

.service-card-photo:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(22, 18, 12, 0.95) 0%, rgba(22, 18, 12, 0.45) 60%, transparent 100%);
}

.service-card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    color: white;
    width: 100%;
}

.service-card-body h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 0.5rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-photo:hover .service-card-body p {
    opacity: 1;
    transform: translateY(0);
}

.service-card-body .service-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.service-card-photo:hover .service-link {
    color: #e8bf72;
}

/* ===== Gallery Preview ===== */
.gallery-preview {
    padding: 5rem 1.5rem;
    background-color: var(--background);
}

.gallery-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Photo-based gallery link cards */
.gallery-link-photo {
    display: block;
    text-decoration: none;
    position: relative;
    min-height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--muted);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-link-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.gallery-link-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 18, 12, 0.82) 0%, rgba(22, 18, 12, 0.2) 55%, transparent 100%);
    transition: background 0.3s ease;
}

.gallery-link-photo:hover .gallery-link-overlay {
    background: linear-gradient(to top, rgba(22, 18, 12, 0.92) 0%, rgba(22, 18, 12, 0.4) 65%, transparent 100%);
}

.gallery-link-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    color: white;
    z-index: 1;
}

.gallery-link-text h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.gallery-link-text span {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===== Contact Section ===== */
.contact {
    padding: 5rem 1.5rem;
    background-color: var(--card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--foreground);
}

.detail-item p {
    color: var(--muted-foreground);
}

.detail-item a {
    color: var(--gold);
    font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--input);
    border-radius: calc(var(--radius) - 2px);
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 158, 74, 0.1);
}

.contact-form button {
    margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 1.5rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.footer-col p {
    color: rgba(250, 248, 246, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: rgba(250, 248, 246, 0.8);
}

.footer-col a {
    color: var(--gold);
}

.footer-col a:hover {
    color: var(--primary-foreground);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(250, 248, 246, 0.2);
    border-radius: 50%;
    color: var(--primary-foreground);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--gold-foreground);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 246, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(250, 248, 246, 0.6);
    font-size: 0.875rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-elegant);
    transition: transform 0.3s ease;
    z-index: 30;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== Animations ===== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.animate-fade-up {
    animation: fade-up 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background: var(--card);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        margin: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-photo {
        aspect-ratio: 16 / 9;
    }

    .service-card-body p {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}




.hero::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    135deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.04) 100%
    );

    pointer-events: none;
    z-index: 0;
}