* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ISKCON Logo */
.iskcon-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-title {
    color: #8B0000;
    font-weight: 800;
    font-size: 1.75rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8B0000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #FF6600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6600;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-gold:active {
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background-image: linear-gradient(rgba(255, 245, 230, 0.85), rgba(255, 228, 204, 0.85)), url('assets/prabhupada.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

@keyframes float {
    from { background-position: 0 0; }
    to { background-position: 150px 150px; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.greeting {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Image Placeholders */
.image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFE4CC, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Radha Madanmohan Section */
.radha-madanmohan-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('assets/Sri Sri Radha Madanmohan Ji pic for.main page.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Benefits Card */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.3);
    border-color: #FFD700;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

/* QR Code Placeholder */
.qr-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #9ca3af;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    padding: 50px 20px 30px;
}

/* Warning Badge */
.warning-badge {
    background: linear-gradient(135deg, #FF6600, #FF4500);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .greeting {
        font-size: 1.2rem;
    }
}

/* Section Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
}

.about-content h3 {
    color: #FF6600;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.about-content hr {
    border: none;
    border-top: 2px solid #FFD700;
    margin: 2.5rem 0;
    opacity: 0.5;
}
