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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    padding-top: 80px;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8b4cb 0%, #a8c8ec 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 400;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e8b4cb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #e8b4cb;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #e8b4cb;
    padding-bottom: 0.5rem;
}

.text-content p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.text-content li {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.8;
    text-align: justify;
}

.profile-section {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: url('../assets/img/profil_pic_large.jpg?height=200&width=200') center/cover;
    margin: 0 auto 1.5rem auto;
    border: 4px solid #e8b4cb;
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.profile-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #e8b4cb 0%, #a8c8ec 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 180, 203, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-section {
        position: static;
        order: -1;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

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

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon img {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Responsive Design for About Page */
@media (max-width: 1024px) {
    .content-grid {
        gap: 3rem;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .main-content {
        padding: 2rem 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-section {
        position: static;
        order: -1;
    }

    .profile-card {
        padding: 1.5rem;
    }

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

    .text-content h1 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .text-content h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }

    .text-content p,
    .text-content li {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon img {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    body {
        padding-top: 70px;
    }

    .main-content {
        padding: 1.5rem 0;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .text-content p,
    .text-content li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .profile-card {
        padding: 1.2rem;
    }

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

    .profile-card h3 {
        font-size: 1.3rem;
    }

    .profile-card p {
        font-size: 0.9rem;
    }

    .contact-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .contact-button:hover {
        transform: none;
    }

    .nav-links a::after {
        display: none;
    }
}