@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Original+Surfer&display=swap');

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Blurry ocean background */
body {
    background-image: url('https://media.istockphoto.com/id/1170804921/photo/turtle-closeup-with-school-of-fish.jpg?s=612x612&w=0&k=20&c=0l3Sw_Lx-9PVHjR963pvt9A6-p7sxwMe-xm9LnwxAgw=');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    padding-top: 64px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px) brightness(0.8);
    z-index: -1;
}

/* Navbar with glass effect */
.navbar {
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: fixed;
    top: 0;
    z-index: 100;
    height: 64px;
}

.nav-logo {
    font-family: "DynaPuff", sans-serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2vw;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: "Original Surfer", Arial, sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link:hover, .nav-link:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Content with glass morphism */
.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
}

h1 {
    color: #ffffff;
    font-family: "DynaPuff", system-ui;
    font-weight: 700;
    font-size: 3.5rem;
    text-align: center;
    margin: 0 0 50px 0;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.3),
        0 0 20px rgba(255,255,255,0.2),
        2px 2px 4px rgba(0,0,0,0.3);
}

.work-section {
    margin-bottom: 50px;
}

h2 {
    color: #ffffff;
    font-family: "DynaPuff", system-ui;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.image-circle {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover .image-circle {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.text-content {
    flex: 1;
}

p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

p:last-child {
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 0 12px;
        align-items: flex-start;
    }
    
    .nav-logo {
        font-size: 1.3rem;
        margin: 10px 0 0 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        font-size: 1rem;
    }
    
    .content {
        margin: 30px 20px;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .image-circle {
        flex: 0 0 150px;
        height: 150px;
    }
}