/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
	align-items:center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: #d4af37;
    font-size: 1.8rem;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #d9d9d9;
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -6px;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #f0c75e);
    color: #111;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        gap: 20px;
    }

    .cta-btn {
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    color:white;
}

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    flex-direction:column;
    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.85)
    ),
    url('hero-bg.jpg');
    background-size:cover;
    background-position:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(
    circle at top,
    rgba(212,175,55,0.15),
    transparent 60%
    );
}

.navbar{
    position:relative;
    z-index:10;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
    letter-spacing:2px;
    color:#d4af37;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.register-btn{
    text-decoration:none;
    background:#d4af37;
    color:#111;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.register-btn:hover{
    transform:translateY(-3px);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:120px 8%;
}

.event-tag{
    display:inline-block;
    background:rgba(212,175,55,0.15);
    color:#d4af37;
    border:1px solid rgba(212,175,55,0.3);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:5rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.1rem;
    color:#cfcfcf;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.btn-primary{
    background:#d4af37;
    color:#111;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-4px);
    transition:.3s;
}

.event-details{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.event-details h3{
    color:#d4af37;
    font-size:1.5rem;
    margin-bottom:5px;
}

.event-details span{
    color:#aaa;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        gap:15px;
    }

    .hero-content{
        text-align:center;
        padding-top:80px;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .event-details{
        justify-content:center;
    }
}
/* Countdown Section */

.countdown-section {
    background: #0a0a0a;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.time-box {
    width: 180px;
    height: 180px;
    background: #121212;
    border: 2px solid #d4af37;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 10px rgba(212,175,55,0.2),
        0 0 20px rgba(212,175,55,0.1);
    transition: all 0.4s ease;
}

.time-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 20px rgba(212,175,55,0.4),
        0 0 40px rgba(212,175,55,0.2);
}

.number {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
}

.label {
    margin-top: 10px;
    font-size: 1rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-details {
    margin-top: 40px;
}

.event-details p {
    font-size: 1.1rem;
    color: #bdbdbd;
    margin: 8px 0;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .countdown-title {
        font-size: 2rem;
    }

    .time-box {
        width: 140px;
        height: 140px;
    }

    .number {
        font-size: 3rem;
    }
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0a0a0a;
}

.about-event{
    background:#0f0f0f;
    padding:100px 8%;
}

.container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:320px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 0 40px rgba(212,175,55,0.15);
}

.about-content{
    flex:1;
    min-width:320px;
}

.section-tag{
    color:#D4AF37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    color:#ffffff;
    font-size:3rem;
    margin:15px 0 20px;
    line-height:1.2;
}

.about-content p{
    color:#bdbdbd;
    font-size:1rem;
    line-height:1.8;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:35px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#161616;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,0.15);
    transition:0.3s;
}

.feature:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
}

.feature span{
    color:#D4AF37;
    font-size:22px;
}

.feature p{
    margin:0;
    color:white;
    font-size:15px;
}

.about-btn{
    display:inline-block;
    text-decoration:none;
    background:#D4AF37;
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.about-btn:hover{
    background:#f4cc4d;
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(212,175,55,0.4);
}

@media(max-width:991px){

    .container{
        flex-direction:column;
    }

    .about-content h2{
        font-size:2.2rem;
    }

    .features{
        grid-template-columns:1fr;
    }
}
/* ==========================
   FEATURED SPEAKERS SECTION
========================== */

.speakers-section {
    background: #0d1117;
    padding: 100px 8%;
    color: #fff;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: #b8b8b8;
    font-size: 1.1rem;
}

/* Grid */

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* Card */

.speaker-card {
    background: #161b22;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Image */

.speaker-image {
    height: 380px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.08);
}

/* Info */

.speaker-info {
    text-align: center;
    padding: 25px;
}

.speaker-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.speaker-info span {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Gold Glow Border */

.speaker-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(212, 175, 55, 0.8),
        transparent
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Responsive */

@media(max-width:768px){

    .section-title h2{
        font-size:2.2rem;
    }

    .speaker-image{
        height:320px;
    }

}
/* ==========================
   WORSHIP ARTISTS SECTION
========================== */

.artists-section {
    background: #0a0a0a;
    padding: 100px 8%;
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 48px;
    margin: 15px 0;
    color: #fff;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #bdbdbd;
    line-height: 1.8;
}

/* Grid Layout */

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #111;
}

.artist-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.1)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.overlay h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #d4af37;
}

.overlay p {
    color: #f5f5f5;
    font-size: 15px;
}

/* Hover Effects */

.artist-card:hover img {
    transform: scale(1.1);
}

.artist-card:hover .overlay {
    opacity: 1;
}

/* Golden Glow */

.artist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: 0.4s ease;
    z-index: 2;
}

.artist-card:hover::before {
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Responsive */

@media(max-width:768px) {

    .section-header h2 {
        font-size: 36px;
    }

    .artist-card img {
        height: 350px;
    }

}
/* Event Schedule Section */
.schedule-section {
    background: #0b0f19;
    padding: 100px 10%;
    color: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: #b5b5b5;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #d4af37,
        #8a6b1f
    );
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 111px;
    top: 18px;
    width: 18px;
    height: 18px;
    background: #d4af37;
    border-radius: 50%;
    border: 4px solid #0b0f19;
    box-shadow: 0 0 15px #d4af37;
}

.time {
    min-width: 100px;
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
    margin-right: 40px;
    text-align: right;
}

.content {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.4s ease;
}

.content:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.content h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
}

.content p {
    color: #c7c7c7;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 60px;
    }

    .timeline-item::before {
        left: 16px;
    }

    .time {
        text-align: left;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    background: #0b0b0b;
    padding: 100px 8%;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3rem;
    margin: 15px 0;
}

.section-header p {
    color: #b5b5b5;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* Gallery Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Masonry Sizes */

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.1)
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.overlay h3 {
    color: #fff;
    font-size: 1.3rem;
}

/* Hover Effects */

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Gold Glow */

.gallery-item:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Responsive */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}
/* Donation & Sponsorship Section */

.donation-section {
    background: #0b0f19;
    padding: 100px 8%;
    color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 60px;
}

.support-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-card {
    background: #141b2d;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    width: 350px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: 0.6s;
}

.support-card:hover::before {
    left: 100%;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.support-card p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #d4af37;
    color: #0b0f19;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn:hover {
    background: #f5d76e;
    transform: scale(1.05);
}

/* Responsive */

@media(max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .support-card {
        width: 100%;
    }
}
/* LOCATION SECTION */

.location-section {
    background: #0b0f19;
    padding: 100px 8%;
    color: #ffffff;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.section-header p {
    color: #bdbdbd;
    font-size: 1.1rem;
}

.location-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.location-info {
    flex: 1;
    min-width: 320px;
    background: #121826;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-info h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon {
    font-size: 1.5rem;
}

.info-item p {
    color: #d8d8d8;
    font-size: 1rem;
}

.direction-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f5d76e
    );
    color: #111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s ease;
}

.direction-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.map-container {
    flex: 1.5;
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* Responsive */

@media (max-width: 900px) {
    .location-wrapper {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .location-info,
    .map-container {
        width: 100%;
    }
}
/* REGISTRATION SECTION */

.registration-section {
    background: #0b0b0f;
    padding: 100px 10%;
    color: #ffffff;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.registration-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.registration-text p {
    color: #bdbdbd;
    font-size: 1.1rem;
    line-height: 1.8;
}

.registration-form {
    background: #15151d;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1d1d26;
    border: 1px solid #2f2f3d;
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
}

.register-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f6d365
    );
    color: #111;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* RESPONSIVE DESIGN */

@media (max-width: 900px) {
    .registration-content {
        grid-template-columns: 1fr;
    }

    .registration-text {
        text-align: center;
    }

    .registration-text h2 {
        font-size: 2.3rem;
    }
}
/* FAQ SECTION */

.faq-section {
    background: #0b0b0b;
    padding: 100px 10%;
    color: #ffffff;
}

.faq-section .container {
    max-width: 900px;
    margin: auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.faq-subtitle {
    text-align: center;
    color: #bdbdbd;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #151515;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    color: #d4af37;
    transition: 0.3s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 25px 25px;
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {

    .faq-section {
        padding: 80px 20px;
    }

    .faq-section h2 {
        font-size: 2.2rem;
    }

    .faq-item summary {
        font-size: 1rem;
    }
}
/* =========================
   FINAL CTA SECTION
========================= */

.cta-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(
        135deg,
        #050505,
        #0d1117,
        #111827
    );
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.15), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 850px;
    margin: auto;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

/* Register Button */
.btn-primary {
    background: #d4af37;
    color: #111;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

/* Watch Live Button */
.btn-secondary {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* FOOTER */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 70px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-column h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-column p {
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
    padding-left: 6px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    padding: 25px 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #050505;
}

.footer-bottom p {
    color: #888;
    font-size: 0.95rem;
}

/* Responsive */
@media(max-width:768px) {
    .footer-container {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.85)),
    url("background.jpg");
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:850px;
}

.tagline{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
}

.hero h1{
    font-size:4rem;
    line-height:1.2;
    margin:20px 0;
    font-weight:700;
}

.hero p{
    color:#c5c5c5;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.primary{
    background:#d4af37;
    color:#111;
}

.primary:hover{
    background:#fff;
}

.secondary{
    border:2px solid #d4af37;
    color:#d4af37;
}

.secondary:hover{
    background:#d4af37;
    color:#111;
}

/* Responsive */
@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    .hero p{
        font-size:1rem;
    }

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0a0a0a;
    color:#ffffff;
}

.countdown-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}

.countdown-container{
    text-align:center;
    max-width:800px;
    width:100%;
}

.countdown-container h2{
    font-size:2.2rem;
    margin-bottom:10px;
    color:#d4af37;
}

.event-date{
    color:#bdbdbd;
    margin-bottom:35px;
    font-size:1rem;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.time-box{
    width:130px;
    height:130px;
    background:#151515;
    border:1px solid rgba(212,175,55,0.3);
    border-radius:15px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 0 15px rgba(212,175,55,0.15);

    transition:0.3s ease;
}

.time-box:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(212,175,55,0.4);
}

.time-box span{
    font-size:2.8rem;
    font-weight:700;
    color:#d4af37;
}

.time-box small{
    margin-top:8px;
    font-size:0.9rem;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#ffffff;
}

@media(max-width:768px){

    .time-box{
        width:110px;
        height:110px;
    }

    .time-box span{
        font-size:2rem;
    }
}
/* FEATURED SPEAKERS & WORSHIP ARTISTS */

.ministry-team {
    background: #0a0a0a;
    padding: 100px 8%;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.section-header p {
    color: #bdbdbd;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #161616;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(212,175,55,0.15);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.25);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    color: white;
}

.team-card span {
    display: block;
    color: #d4af37;
    margin: 10px 0 25px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* TABLET */

@media(max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media(max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .team-card img {
        height: 250px;
    }
}
```css
/* EVENTS SECTION */
.events-section{
    background: #0f0f0f;
    padding: 100px 8%;
    color: #fff;
}

.events-container{
    margin-bottom: 80px;
}

.section-title{
    font-size: 42px;
    color: gold;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after{
    content: "";
    width: 80px;
    height: 4px;
    background: gold;
    display: block;
    margin: 15px auto;
    border-radius: 10px;
}

/* EVENT CARD */
.event-card{
    background: #181818;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(255,215,0,.15);
}

.event-card:hover{
    transform: translateY(-8px);
}

.event-card img{
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.event-content{
    padding: 30px;
}

.event-content h3{
    font-size: 30px;
    margin: 15px 0;
}

.event-content p{
    color: #cfcfcf;
    line-height: 1.8;
}

.event-date{
    margin-top: 20px;
    color: #aaa;
}

/* BADGES */
.event-badge{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.upcoming{
    background: #1db954;
    color: white;
}

.past{
    background: crimson;
    color: white;
}


/* RESPONSIVE */
@media(max-width:768px){

    .event-card{
        flex-direction: column;
    }

    .event-card img{
        width: 100%;
    }

    .event-content{
        text-align: center;
    }

    .section-title{
        font-size: 32px;
    }

}
/* TICKETS SECTION */

.tickets-section {
    background: #0d1117;
    padding: 100px 8%;
    color: #fff;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.section-header p {
    color: #aaa;
    margin-bottom: 60px;
}

/* GRID */

.tickets-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */

.ticket-card {
    position: relative;
    width: 350px;
    background: #161b22;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 30px;
    transition: 0.4s;
    border: 1px solid rgba(212,175,55,0.2);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.3);
}

.ticket-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* FEATURED CARD */

.featured {
    border: 2px solid #d4af37;
    transform: scale(1.05);
}

/* PRICE TAGS */

.price-tag {
    position: absolute;
    top: 30px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    padding: 12px 18px;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.left {
    left: -15px;
    border-radius: 0 10px 10px 0;
}

.right {
    right: -15px;
    border-radius: 10px 0 0 10px;
}

/* CONTENT */

.ticket-card h3 {
    font-size: 1.8rem;
    margin-top: 25px;
    color: #d4af37;
}

.ticket-card p {
    color: #ccc;
    padding: 0 20px;
    margin: 15px 0;
}

.ticket-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ticket-card ul li {
    padding: 8px 0;
    color: #e5e5e5;
}

/* BUTTON */

.ticket-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.ticket-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* MOBILE */

@media(max-width: 992px) {
    .tickets-container {
        flex-direction: column;
        align-items: center;
    }

    .featured {
        transform: none;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0d1117;
    font-family:Arial, sans-serif;
}

.contact-section{
    padding:100px 10%;
    background:#0d1117;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:300px;
}

.contact-info h2{
    color:#ffffff;
    font-size:48px;
    margin-bottom:20px;
}

.contact-info p{
    color:#b8b8b8;
    line-height:1.8;
    margin-bottom:25px;
}

.info-item{
    margin-bottom:25px;
}

.info-item h4{
    color:#d4af37;
    margin-bottom:8px;
    font-size:18px;
}

.contact-form{
    flex:1;
    min-width:320px;
}

.contact-form form{
    background:#161b22;
    padding:40px;
    border-radius:20px;
    box-shadow:0 0 30px rgba(212,175,55,0.15);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#21262d;
    border:none;
    outline:none;
    color:#fff;
    padding:16px;
    margin-bottom:20px;
    border-radius:10px;
    font-size:16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#8b949e;
}

.contact-form button{
    width:100%;
    padding:16px;
    background:#d4af37;
    color:#111;
    border:none;
    border-radius:10px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:0.4s;
}

.contact-form button:hover{
    background:#f1c84c;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .contact-container{
        flex-direction:column;
    }

    .contact-info h2{
        font-size:38px;
    }

}