/* style.css */

/* CSS Variables */
:root {
    /* Color Palette - Monochromatic Scheme */
    --primary-color: #0f0f0f;
    --accent-color: #1f1f1f;
    --highlight-color: #2f2f2f;
    --text-color: #ffffff;
    --secondary-text: #cccccc;
    --btn-bg: #ffffff;
    --btn-text: #000000;
    --hover-btn-bg: #e0e0e0;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --transition-speed: 0.3s;
    --gradient-bg: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.7));
    
    /* Fonts */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Merriweather', serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color var(--transition-speed);
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-header);
}

.btn:hover {
    background-color: var(--hover-btn-bg);
}

.hidden {
    display: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--accent-color);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-header);
    transition: color var(--transition-speed);
}

nav ul li a:hover {
    color: var(--btn-bg);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 4px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section h1 {
    font-family: var(--font-header);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.hero-section .btn {
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.pricing-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.card h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    margin-bottom: 20px;
}

.card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.card .btn {
    font-family: var(--font-header);
}

/* Success Stories Section */
.success-section {
    padding: 80px 0;
    background: var(--highlight-color);
}

.success-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.success-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.slide {
    min-width: 300px;
    background: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.slide:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-content {
    padding: 15px;
    text-align: center;
}

.slide-content h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1rem;
    color: var(--secondary-text);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.partners-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.partners-logos img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

.partners-logos img:hover {
    transform: scale(1.1);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.events-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-card {
    background: var(--highlight-color);
    padding: 20px;
    border-radius: 10px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.event-card h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 1rem;
    color: var(--secondary-text);
}

.event-card strong {
    color: var(--text-color);
}

/* External Resources Section */
.external-resources-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.external-resources-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.resource-card {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.resource-card h3 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.resource-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.resource-card h3 a:hover {
    color: var(--highlight-color);
}

.resource-card p {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--highlight-color);
}

.contact-section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-family: var(--font-header);
    font-size: 1rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: var(--accent-color);
    color: var(--text-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--secondary-text);
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--highlight-color);
    outline: none;
}

.contact-form .btn {
    align-self: center;
    font-family: var(--font-header);
}

.form-success {
    text-align: center;
    color: var(--text-color);
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--accent-color);
    color: var(--text-color);
}

.footer-links,
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a,
.social-media a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-family: var(--font-header);
}

.footer-links a:hover,
.social-media a:hover {
    color: var(--hover-btn-bg);
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

/* Cookie Popup */
#cookie-popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 20px;
    display: none;
    z-index: 9999;
    text-align: center;
    font-size: 1rem;
}

#cookie-popup button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 5px;
    transition: background-color var(--transition-speed);
}

#cookie-popup button:hover {
    background-color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--accent-color);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in;
    }

    nav ul.nav-active {
        max-height: 300px;
    }

    .burger {
        display: flex;
    }
}

/* Read More Links */
.read-more {
    color: var(--btn-bg);
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.read-more:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Social Media Icons */
.social-media a {
    font-family: var(--font-header);
    font-size: 1rem;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 20px;
}

.success-page h1 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-page p {
    font-size: 1.2rem;
}

/* Privacy and Terms Pages */
.privacy-terms {
    padding-top: 100px;
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.8;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.burger{
    display: none;
}