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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: #fff;
    background-color: #121b30;
    display: flex;
    flex-direction: column;
}

.profile-card {
    width: 100%;
    max-width: 1200px;
}

.heading {
    padding: 2rem 0 1.5rem 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
}

#clock {
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: #06b6d4;
}

.profile-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.content {
    padding: 0;
}

.image-wrapper {
    display: flex;
    justify-content: center;
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #334155;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description {
    color: #cbd5e1;
    line-height: 1.6;
}

.name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.lists-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    width: 100%;
    align-items: start;
}

.list-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.list-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    transition: color 0.2s ease;
    font-size: 15px;
    padding: 8px 0;
}

.list-item:hover {
    color: #06b6d4;
}

.hobbies-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background: #06b6d4;
    border-radius: 9999px;
}

.dislikes-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background: #ef4444;
    border-radius: 9999px;
}

@media (max-width: 1024px) {
    .profile-image {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .lists-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-description {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body {
        padding: 1rem;
    }

    .profile-card {
        border-radius: 1rem;
    }

    .heading {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .profile-title {
        font-size: 22px;
    }

    #clock {
        font-size: 16px;
        padding: 6px 12px;
    }

    .content {
        padding: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .name {
        font-size: 1.75rem;
    }

    .list-title {
        font-size: 1.125rem;
    }

    .list-item {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    .profile-card {
        max-width: 900px;
    }
}

.site-header {
    background: rgba(18, 27, 48, 0.95);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #3b82f6;
}

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

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.nav-link.active {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.15);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
}

/* Footer Styles */
.site-footer {
    background: rgba(18, 27, 48, 0.95);
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding: 1.5rem 2rem;
    text-align: center;
    color: #cbd5e1;
}

/* Contact Page Styles */
.contact-section {
    width: 100%;
    max-width: 600px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: #cbd5e1;
    font-size: 1.125rem;
}

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.about-container {
    width: 100%;
    max-width: 800px;
}

.about-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.about-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #06b6d4;
}

.about-section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

.about-section ul li strong {
    color: #e2e8f0;
}

.note-card {
    background: rgba(15, 23, 42, 0.6);
    border-left: 4px solid #06b6d4;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-style: italic;
}

.note-card p {
    margin-bottom: 1rem;
}
.signature {
    text-align: right;
    font-weight: 600;
    color: #06b6d4;
}

/* Responsive Styles for Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .logo {
        font-size: 1.25rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-form,
    .about-section {
        padding: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }
}