:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #ff00ff;
    --accent-secondary: #00ffff;
    --card-bg: #1a1a1a;
    --card-hover: #252525;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
    padding: 40px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
}

.logo-sub {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.founder-info {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    text-align: left;
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.founder-details {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.founder-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* 3D Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    /* Rounded corners */
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: 0 4px 0 #b300b3, 0 5px 10px rgba(0, 0, 0, 0.3);
    /* 3D Shadow effect */
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #b300b3, 0 0 0 rgba(0, 0, 0, 0);
}

.btn:hover {
    background-color: #e600e6;
}

.linkedin-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
}

.project-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Projects */
.projects {
    padding: 60px 0;
}

.projects h2,
.contact-info h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.project-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, background-color 0.3s;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
    border-color: var(--accent-primary);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.visit-link {
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Contact */
.contact-info {
    padding: 60px 0;
    text-align: center;
}

.email-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #333;
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

.legal-info h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

address {
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #555;
    transition: color 0.3s;
    cursor: pointer;
}

.legal-links a:hover {
    color: #fff;
    border-color: #fff;
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #444;
    width: 80%;
    max-width: 600px;
    border-radius: 12px;
    color: var(--text-secondary);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .email-link {
        font-size: 1.2rem;
    }
}