:root {
    --primary: #5f6368;     /* main grey */
    --dark: #2f3133;        /* deep charcoal */
    --light: #f5f5f5;       /* background */
    --accent: #c59d5f;      /* gold (keep this, works well) */
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
}



.header a {
    color: var(--dark);
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    height: 90vh;
    background: url('../images/kitchen1.png') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(47, 49, 51, 0.5); /* dark charcoal overlay */
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 38px;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.overlay p {
    color: #ddd;
}

/* Sections */
.section {
    padding: 70px 20px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.section p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 100%;
}




/* Button */
.btn, button {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn:hover {
    background: #b48d50;
}

/* CTA */
.cta {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px;
}



button {
    border-radius: 8px;
}

.center {
    text-align: center;
}








.cart-item {
    background: white;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
}

.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}



.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #555;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 90px;
}



.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.contact-form button {
    background: #c59d5f;
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    text-align: left;
    flex-wrap: wrap;
    gap: 20px;
}

.footer h3, .footer h4 {
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}


.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}




/* GALLERY FIX */


.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* clean desktop grid */
    gap: 15px;
    padding: 40px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* PERFECT square */
    object-fit: cover;
    border-radius: 10px;
}

.header {
    position: relative;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.gallery-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
   MOBILE OPTIMIZATION (FINAL)
========================= */
@media (max-width: 768px) {

    /* HEADER */
    .header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .logo img {
        height: 60px;
    }

    
    /* HERO */
    .hero {
        height: 70vh;
    }

    .overlay h1 {
        font-size: 24px;
        text-align: center;
    }

    .overlay p {
        font-size: 14px;
    }

    /* SERVICES */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        width: 100%;
    }

    /* PRODUCTS (SHOP) */
    .products {
        grid-template-columns: 1fr !important;
        padding: 20px;
        gap: 20px;
    }

    .product {
        width: 100%;
    }

    .product img {
        height: 180px;
    }

    /* GALLERY */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }

    .gallery img {
        aspect-ratio: 1 / 1;
    }

    /* GALLERY PREVIEW (HOME) */
    .gallery-preview {
        grid-template-columns: 1fr;
    }

    /* FORM */
    .contact-form {
        width: 100%;
        padding: 0 10px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    /* CALCULATOR */
    .calculator {
        padding: 20px;
        text-align: center;
    }

    .calculator input,
    .calculator select {
        width: 100%;
        margin-bottom: 10px;
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}



.product {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}


.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.logo img {
    filter: brightness(1.1) contrast(1.1);
}

.gallery-preview img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.footer {
    background: #111;
    padding: 60px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
}

.footer h3 {
    color: var(--accent);
}
.premium-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    position: relative;
}

.premium-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.premium-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.form-section {
    background: linear-gradient(135deg, #111, #2f3133);
    color: white;
}

.form-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-left h2 {
    font-size: 36px;
}

.premium-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.premium-form button {
    background: var(--accent);
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.premium-form button:hover {
    background: #b48d50;
}

/* FULLSCREEN VIDEO INTRO */
#introVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#introVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr;
  }
}


