/* 
 * SIALKOT FAUGI BAND - Luxury Design System
 * Palette: Dark Green, Gold, Black, White
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-green: #004d40;
    --dark-green: #002d24;
    --gold: #B8860B; /* Slightly darker gold for light background */
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #8B6508 100%);
    --black: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .royal-font {
    font-family: 'Playfair Display', serif;
}

.logo-text-stroke {
    -webkit-text-stroke: 1px #000; /* Sharp black stroke */
}

.logo-text-black-gold {
    color: #000 !important;
    -webkit-text-stroke: 1px var(--gold); /* Royal gold stroke on black text */
    letter-spacing: 1px;
}

/* Luxury Typography */
.text-gold {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15); /* Clean, subtle depth */
}

.hero-subtitle {
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px !important;
    display: block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--black) !important;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    min-height: 80px;
    z-index: 1050;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* Adjust for fixed navbar height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 50px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff !important;
    /* Multilayered shadow for extreme visibility without a box */
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 5px 15px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.3);
}

.logo-text-stroke {
    -webkit-text-stroke: 1.5px black;
    color: #f8f9fa !important; /* Premium Off-White */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    font-weight: 900;
}

.hero-subtitle {
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,1);
}

.hero-content p {
    text-shadow: 0 2px 4px rgba(0,0,0,1);
    font-weight: 500;
}

/* Luxury Cards */
.luxury-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: var(--transition);
    height: 100%;
    color: #1a1a1a;
}

.luxury-card:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
}

/* Gallery Masonry */
.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none; /* Let hover events pass through to the container */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.video-container {
    background: #000;
    background: linear-gradient(45deg, #001a14, #002d24);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 3rem;
    pointer-events: none;
    opacity: 0.9;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.video-container:hover .video-play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

/* WhatsApp Floating */
.video-sound-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--white);
    background: rgba(0,0,0,0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0.6;
    pointer-events: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
[data-aos] {
    transition-duration: 1000ms !important;
}

footer {
    background-color: #f1f3f5;
    color: #333;
    border-top: 1px solid var(--glass-border);
}

footer .text-white {
    color: #333 !important;
}

footer .text-secondary {
    color: #666 !important;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: #f8f9fa !important;
    color: #1a1a1a !important;
}

/* Form Controls for Light Theme */
.form-control, .form-select {
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.1) !important;
}

.form-label {
    color: var(--gold) !important;
    font-weight: 600;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
}

/* Responsive Design */
/* Professional Mobile Header */
@media (max-width: 991px) {
    .navbar { 
        padding: 8px 0; 
        min-height: 70px;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .navbar-brand img { width: 45px; height: 45px; }
    .navbar-brand span { 
        font-size: 0.95rem !important; 
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .navbar-toggler { 
        border: none; 
        padding: 5px;
        outline: none !important;
    }
    .navbar-toggler:focus { box-shadow: none; }
    
    /* Custom Gold Hamburger Icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23B8860B' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }
    
    /* Mobile Menu Dropdown Styling */
    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border-top: 1px solid #f1f1f1;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-link {
        margin: 0;
        padding: 15px 0 !important;
        text-align: center;
        border-bottom: 1px solid #f8f8f8;
        font-size: 1rem;
        color: #1a1a1a !important;
    }
    .nav-link:last-child { border-bottom: none; }
    
    .section-padding { padding: 60px 0; }
    .hero-section { height: auto; min-height: 100vh; padding: 120px 0 80px; }
    .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .section-title { font-size: 2rem; }
    .luxury-card { padding: 30px 20px; }
    
    /* Center text on mobile */
    .hero-content { text-align: center; }
    .hero-content .d-flex { justify-content: center !important; flex-direction: column !important; }
    .hero-content .btn { width: 100% !important; margin-bottom: 10px; }
    
    .logo-text-stroke { -webkit-text-stroke: 0.8px black; }
    
    /* Footer responsiveness */
    footer p { font-size: 1rem !important; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .navbar-brand img { width: 40px; height: 40px; }
    .gallery-item img, .video-container video { height: 250px; object-fit: cover; }
    .video-sound-indicator { width: 25px; height: 25px; font-size: 0.7rem; }
}
