/* Modern Profile Design */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #90ee90 0%, #98fb98 50%, #afeeaf 100%);
    min-height: 100vh;
}

.profile-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
.adminmenu {
    text-align: right;
    margin-bottom: 30px;
}

.adminmenu a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.adminmenu a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Card */
.day {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

/* Header */
h2 {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    color: white;
    margin: 0;
    padding: 30px;
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.title {
    margin: 0;
}

/* Body Content */
.body {
    padding: 40px;
}

/* Profile Photo */
.photo {
    float: right;
    margin: 0 -10px 20px 30px;
    border-radius: 15px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.photo:hover {
    transform: scale(1.05);
}

/* Sections */
.section {
    border: none;
    margin-bottom: 40px;
}

h3.subtitle {
    color: #228b22;
    font-size: 1.4em;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(to right, #228b22, #32cd32, #98fb98, transparent) bottom/100% 2px no-repeat;
    position: relative;
    clear: left;
}

h3.subtitle::before {
    display: none;
}

/* Paragraphs */
p {
    margin: 15px 0;
    font-size: 1em;
    color: #555;
    text-align: justify;
}

p.footer {
    margin: 15px 0;
    font-size: 0.8em;
    color: #aaa;
    text-align: justify;    
}

/* Links */
a {
    color: #228b22;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #32cd32;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-body {
        padding: 10px;
    }
    
    .body {
        padding: 20px;
    }
    
    .photo {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        width: 120px;
        height: 120px;
    }
    
    h2 {
        font-size: 2em;
        padding: 20px;
    }
    
    h3.subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5em;
        padding: 15px;
    }
    
    .body {
        padding: 15px;
    }
    
    .photo {
        width: 100px;
        height: 100px;
    }
}
