:root {
    --primary: #2a3f8f;
    --secondary: #00b4d8;
    --dark: #121212;
    --light: #f8f9fa;
    --highlight: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 50px 0;
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--highlight);
    color: var(--dark);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}


.center-p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

ul {
    padding-left: 20px;
}


li {
    margin-bottom: 8px;
}





/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.732);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9vh;
}

header nav .logo img {
    display: inline-block;
    height: 80px;
}

header nav .nav-links {
    display: flex;
    list-style: none;
}

header nav .nav-links a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav .nav-links a:hover {
    color: var(--secondary);
}

header nav .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}





/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('workshop-images/header-image.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--highlight);
}

.hero .hero-content .description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-content .workshop-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero .hero-content .workshop-details .detail-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 210px;
    backdrop-filter: blur(5px);
}

.hero .hero-content .workshop-details .detail-card i {
    color: var(--secondary);
}





/* Highlights Section */
.highlights {
    background-color: var(--light);
    color: var(--dark);
}

.highlights .highlight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.highlights .highlight-cards .highlight-card {
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.highlights .highlight-cards .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlights .highlight-cards .highlight-card i {
    color: var(--primary);
}





/* Topics Chart */
.topics {
    background-color: var(--dark);
}

.topics .timeline {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
}

.topics .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.topics .timeline .time-card {
    padding: 10px 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    width: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.topics .timeline .time-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    border-radius: 50%;
    top: 20px;
}

.topics .timeline .left {
    left: 0;
}

.topics .timeline .right {
    left: 50%;
}

.topics .timeline .left::after {
    right: -10px;
    z-index: 1;
}

.topics .timeline .right::after {
    left: -10px;
    z-index: 1;
}

.topics .timeline .time-card .time-content {
    padding: 15px;
    background-color: rgba(42, 63, 143, 0.2);
    border-radius: 8px;
}





/* Who Should Attend */
.audience {
    background-color: var(--light);
    color: var(--dark);
}

.audience .audience-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.audience .audience-cards .audience-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary);
    transition: all 0.3s ease-in-out;
}

.audience .audience-cards .audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.audience .audience-cards .audience-card i {
    color: var(--primary);
}





/* What You Get */
.benefits {
    background-color: var(--dark);
}

.benefits .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.benefits .benefit-item .benefit-icon {
    font-size: 2rem;
    color: var(--highlight);
    margin-right: 20px;
    min-width: 50px;
}





/* location */
.location {
    background-color: var(--light);
    color: var(--dark);
}

.location .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px;
}

.location .grid .map-container {
    overflow: hidden;
    border: 2px solid var(--highlight);
}

.location .grid .venue-box {
    background: #d8d2d250;
    padding: 24px;
    height: 100%;
    border: 2px solid var(--highlight);
}

.location .grid .venue-box h3 {
    margin-bottom: 20px;
}

.location .grid .venue-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.location .grid .venue-detail:last-child {
    margin-bottom: 0;
}

.location .grid .venue-detail i {
    color: #2563eb;
    margin-right: 12px;
    margin-top: 8px;
    font-size: 18px;
}

.location .grid .venue-detail p {
    margin: 2px 0;
}

.location .grid .venue-detail p:first-child {
    font-weight: 500;
}





/* Pricing Section */
.pricing {
    background-color: var(--primary);
    text-align: center;
    padding: 50px 0;
}

.pricing .price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--highlight);
    margin-top: -30px;
}

.pricing .price-note {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.pricing .price-lock {
    font-size: 1.2rem;
    margin-top: 30px;
    opacity: 0.8;
}





/* FAQ Section */
.faq-section {
    background-color: var(--light);
    color: var(--dark);
}

.faq-section .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item .faq-question {
    padding: 20px 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-section .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}





/* Footer */
footer {
    background-color: #080808;
    padding: 30px 0;
    text-align: center;
}

footer a {
    display: inline-block;
    color: var(--light);
    text-decoration: none;
}

footer .help {
    color: var(--highlight);
    margin: 20px 0;
}

footer .help p {
    font-size: 1.4rem;
}

footer .help i {
    font-size: 1.4rem;
    margin: 0 8px;
}




