:root {
    --primary-color: #0072FF;
    --secondary-color: #9B00FF;
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --accent-color: #FF6A00;
    --accent-color2: #39FF14;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 90%;
}

header {
    padding: 0;
    text-align: center;
}

/* Hero Sections */
.hero{
    position: relative;
    text-align: center;
    padding: 20px;
    min-height: 60vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero2 {
    position: relative;
    text-align: center;
    min-height: 25vh;  /* Changed from 50vh to 25vh */
    overflow: hidden;
    padding: 20px;
}

.hero2 .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;  /* This centers the image horizontally */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero2-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Buttons */
.login-btn, .cta-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.login-btn:hover, .cta-btn:hover {
    background-color: var(--secondary-color);
}

.button-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Two Column Layout */
.two-column-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: var(--bg-color);
}

.text-column, .image-column {
    flex: 1;
    padding: 20px;
    color: var(--text-color);
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.image-column img {
    max-width: 100%;
    height: auto;
}

/* Three Column Layout */
.three-column-section {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.column-box {
    flex: 1;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.column-box img {
    width: 200px;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* Typography */
h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* Utility Classes */
.highlight { color: var(--accent-color); }
.strong { color: var(--primary-color); }
.passion { color: var(--secondary-color); }
.emphasis { 
    color: var(--accent-color2);
    font-weight: bold;
}
.center { text-align: center; }

/* Features Section */
#features ul {
    list-style-type: none;
    padding: 0;
}

#features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

#features li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--text-color);
    text-align: center;
    padding: 20px 0;
}

.column-text {
    font-size: 1em;
    color: var(--text-color);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 1rem;
        width: 95%;
        gap: 1rem;
    }

    h1 {
        font-size: 36px;
        text-align: center;
    }

    h2 {
        font-size: 24px;
        text-align: center;
    }

    .hero, .hero2 {
        padding: 10px;
        min-height: 50vh;
    }

    .two-column-section {
        flex-direction: column;
        padding: 10px;
    }

    .text-column, .image-column {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .three-column-section {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .column-box {
        width: 100%;
        margin-bottom: 15px;
    }

    .column-box img {
        width: 150px;
        margin-bottom: 10px;
    }

    .login-btn, .cta-btn {
        display: block;
        margin: 10px auto;
        text-align: center;
        max-width: 200px;
    }
}