/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Montserrat:wght@400;700&display=swap');

:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --white: #ffffff;
    --light-bg: #fdfaf3;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero {
    height: 85vh;
    /* Yeh link direct internet se image uthaye ga */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop') 
    center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.btn-gold {
    background: linear-gradient(45deg, #b8860b, #ffd700);
    color: black !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: scale(1.05);
}

/* Categories Section */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 10px auto;
}

.cat-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    color: white;
}

.cat-card:hover img {
    transform: scale(1.1);
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
}