:root {
    --primary-color: #ff9933; /* Saffron */
    --secondary-color: #8B0000; /* Dark Red */
    --gold-color: #FFD700; /* Gold */
    --light-bg: #fff5e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
}

/* Navbar */
.navbar {
    border-bottom: 3px solid var(--primary-color);
}
.navbar-brand {
    font-weight: bold;
    color: var(--secondary-color) !important;
}
.navbar-brand img { height: 50px; }
.btn-donate {
    background: linear-gradient(45deg, #ff9933, #ff5e62);
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 30px;
}

/* Campaign Section (Wedding) */
.campaign-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../uploads/wedding-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid var(--gold-color);
    border-bottom: 5px solid var(--gold-color);
}
.campaign-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px #000;
}
.progress { height: 25px; border-radius: 20px; background-color: rgba(255,255,255,0.2); }
.progress-bar { background-color: var(--primary-color); font-weight: bold; }

/* Cards */
.wedding-card, .activity-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
}
.wedding-card:hover { transform: scale(1.02); }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--secondary-color); font-weight: 800; text-transform: uppercase; }

/* Donors */
.donor-box {
    background: white; padding: 20px; border-radius: 10px; text-align: center;
    border-top: 4px solid var(--primary-color); box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.donor-img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 10px; object-fit: cover; border: 3px solid #eee; }
:root {
    --primary: #d35400; /* Burnt Orange */
    --secondary: #2c3e50; /* Dark Blue */
    --accent: #f39c12; /* Gold */
    --light: #f9f9f9;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: var(--light);
}

/* Header */
.top-bar {
    background-color: var(--secondary);
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
}
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.navbar-brand img { height: 60px; }
.nav-link {
    color: var(--secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
}
.nav-link:hover { color: var(--primary) !important; }
.btn-donate-nav {
    background-color: var(--primary);
    color: white !important;
    border-radius: 25px;
    padding: 8px 25px;
}

/* Hero Section */
.hero-slider .carousel-item {
    height: 600px;
}
.hero-slider img {
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    background: rgba(0,0,0,0.4);
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* YouTube Live Section */
.live-section {
    background-color: #000;
    color: white;
    padding: 40px 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 60px 0 20px;
}
footer h4 { color: white; margin-bottom: 20px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px;}
footer a { color: #bbb; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s;}
footer a:hover { color: var(--primary); padding-left: 5px; }
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.social-icons a:hover { background: var(--primary); }
