/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@600&display=swap');

:root {
    --black: #0b0b0b;
    --gold: #d4af37;
    --dark-gold: #a98c2c;
    --gray: #1a1a1a;
}
a {
    text-decoration: none;
    color: inherit;
}
.logo {
     font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo span {
    color: #d4af37; /* gold */
}
.logo:hover {
    transform: scale(1.05);
}
.logo-img {
    height: 40px;
}
.logo,
.logo h1 {
    margin: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: 
    linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7),
        rgba(20, 15, 5, 0.4),
        rgba(0, 0, 0, 0)
    ),
    url('/static/images/bgimage.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    margin-left: auto;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
     position: relative;
}

.nav-links li a:hover {
    color: #d4af37;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.nav-links li a:hover::after {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid #222;
}

nav h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-content {
    max-width: 700px;
    color: white;
    animation: fadeIn 1.2s ease-in-out;
}
.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero span {
    color: var(--gold);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    background: #d4af37;
    color: black;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #a98c2c;
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn.secondary:hover {
    background: #d4af37;
    color: black;
}

/* Section */
.section {
    padding: 80px 60px;
    color: white;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* EXACTLY 3 columns */
    gap: 30px;
}
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet */
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr; /* mobile */
    }
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}
.card img {
    width: 100%;
    border-radius: 10px;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}
.card:hover .product-img {
    transform: scale(1.1);
}


.card h3 {
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: #d4af37;
}

/* Contact */
form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #111;
    border: 1px solid #333;
    color: white;
}

html {
    scroll-behavior: smooth;
}


@media(max-width:768px) {
    nav {
        padding: 15px;
        flex-direction: column;
    }

    .hero {
        padding: 20px;
        height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section {
        padding: 40px 20px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider {
    max-width: 500px;
}

.main-img {
    width: 100%;
    border-radius: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 80px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border: 2px solid #d4af37;
}

table {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

td {
    font-size: 14px;
}

h2 {
    border-left: 4px solid #d4af37;
    padding-left: 10px;
}


.image-wrapper {
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d4af37;
    color: black;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.featured-product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.footer {
    background: #111;   
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover colors */
.icon.instagram:hover { background: #e1306c; }
.icon.facebook:hover { background: #1877f2; }
.icon.twitter:hover { background: #1da1f2; }
.icon.linkedin:hover { background: #0077b5; }
.icon.github:hover { background: #333; }
.icon.whatsapp:hover { background: #25D366; }

.icon:hover {
    transform: scale(1.1);
}

.about {
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    color: white;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    padding-left: 10px;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.about-image img:hover {
    transform: scale(1.05);
}

.about-page {
    max-width: 900px;
    margin: auto;
    padding: 80px 20px;
    color: white;
}

.about-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    padding-left: 10px;
}

.about-page p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}
.map-section {
    margin-top: 60px;
    text-align: center;
}

.map-section h2 {
    color: white;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    display: inline-block;
    padding-left: 10px;
}

.map-container {
    max-width: 1000px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
/* Hide on desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto; /* 🔥 THIS pushes it to right */
    }



    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
         flex-direction: column;
    }
}

.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(0,0,0,0.95);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

/* PREMIUM WHATSAPP BUTTON */
.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;

    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ICON */
.wa-icon {
    font-size: 18px;
}

/* HOVER EFFECT */
.btn-whatsapp-premium:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* GLOW ANIMATION */
.btn-whatsapp-premium::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.btn-whatsapp-premium:hover::after {
    left: 100%;
}

/* SUBTLE PULSE */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-premium {
    animation: pulse 2.5s infinite;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover effect */
.view-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT */
.contact-form-box {
    flex: 1;
    min-width: 320px;
}

/* RIGHT */
.contact-details {
    flex: 1;
    min-width: 300px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);

    padding: 30px;
    border-radius: 12px;

    color: white;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

.contact-details h2 {
    color: #d4af37;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4af37;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* CONTACT PAGE FULL HEIGHT FIX */
.contact-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-content {
    flex: 1;
}

@media (max-width: 768px) {

    .navbar,
    nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin: 0;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 32px;
        line-height: 1;
    }
}

.products-grid {
    
    gap: 40px;
    
}

.logo-container {
    display: flex;
    align-items: center;    
    gap: 8px;
    text-decoration: none;
    flex-shrink: 1;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.logo-container span {
    font-size: 1.8rem;
    width:auto;
    font-weight: 900;
    letter-spacing: 2px;

    background: linear-gradient(
        90deg,
        #fff4b0 0%,
        #ffd700 20%,
        #c89b3c 45%,
        #8b6b00 70%,
        #ffd700 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.1);
}
@media (max-width: 768px) {
    .logo-container img {
        height: 50px;
    }

    .logo-container span {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 12px 15px;
    }
}

.menu-toggle {
    margin-left: auto;
}

