:root {
    --primary-color: #1a1a1a;
    --secondary-color: #00b4d8;
    --accent-color: #f72585;
    --text-color: #e0e0e0;
    --light-bg: #2d2d2d;
    --dark-bg: #121212;
    --header-bg: rgba(18, 18, 18, 0.95);
    --card-bg: #1f1f1f;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;  /* Space between logo and text */
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 30px;  /* Adjust this value to match your desired logo size */
    width: auto;
    vertical-align: middle;
}

.logo a {
    text-decoration: none;
    color: var(--secondary-color);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 2px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    padding-top: 80px;
}

section {
    padding: 5rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

section:nth-child(even) {
    background: var(--light-bg);
}

#hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);  /* Fallback color */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('test.png') center/contain no-repeat;
    z-index: 1;
}

#hero h1, #hero p {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

#hero p {
    color: var(--text-color);
    opacity: 0.9;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
    max-width: 1200px;
    margin: 1rem auto;
    line-height: 1.8;
}

.content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 90%;  /* Change from fixed width to percentage */
    max-width: 1200px;  /* Maximum width */
    min-width: 1000px;  /* Minimum width to maintain layout */
    margin: 0 auto;
    position: relative;
}

.text {
    flex: 3;  /* Changed from flex: 1 to take up 3/4 of the space */
    margin: 0;
    padding: 0;
    width: 100%;
}

.content > .text:first-child {
    position: static;
    left: auto;
    width: 100%;
}

.content > .text:first-child p,
.content > .text:first-child ul {
    padding-left: 30px;
}

.image + .text {
    position: static;
    left: auto;
    width: 100%;
}

.image + .text p,
.image + .text ul {
    padding-left: 0;
}

.text p, .text ul {
    margin: 1rem 0;
}

.image {
    flex: 1;  /* Keeps flex: 1 to take up 1/4 of the space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image .material-icons-outlined {
    font-size: 6.5rem;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 400;
}

ul {
    list-style-position: inside;
    margin: 1rem 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Contact Section */
#contact {
    background: var(--dark-bg);
}

.contact-content {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.2);
}

.contact-item .material-icons-outlined {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item p {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .text, .image {
        flex: 1;  /* Reset flex proportions on mobile */
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-item {
        min-width: 100%;
    }

    section {
        padding: 5rem 1rem;
    }
}

@media (max-width: 1100px) {
    .content {
        min-width: auto;  /* Remove min-width constraint on smaller screens */
        width: 95%;
    }
}

/* Add these new styles for better dark theme */
.text p {
    color: var(--text-color);
    opacity: 0.9;
}

.text ul li {
    color: var(--text-color);
    opacity: 0.8;
}

.social .material-icons-outlined {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    text-decoration: none;
}

.social a:hover .material-icons-outlined {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* Add subtle transitions for sections */
section {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
} 