body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(0deg, #87CEEB 0%, #ffffff 100%);
    color: #333;
    animation: backgroundRotation 10s infinite linear;
}
@keyframes backgroundRotation {
    0% { background: linear-gradient(0deg, #87CEEB 0%, #ffffff 100%); }
    50% { background: linear-gradient(180deg, #87CEEB 0%, #ffffff 100%); }
    100% { background: linear-gradient(360deg, #87CEEB 0%, #ffffff 100%); }
}
.header {
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #87CEEB;
}
.top-bar {
    text-align: right;
    padding: 5px;
    background-color: #444;
    color: #fff;
}
.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    width: 100px;
    height: auto;
}
.header h1 {
    margin: 10px 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    text-transform: uppercase;
    color: #2c3e50;
}
.header p {
    margin: 0;
    color: #555;
}
.navbar {
    display: flex;
    justify-content: center;
    background-color: #ff6f61;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.navbar a:hover {
    background-color: #ffb88c;
    color: #fff;
}
.container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 20px auto;
    animation: slideIn 1s ease-out;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.column {
    width: 48%;
}
.profile, .about, .gallery-container, .blog, .contact {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.profile {
    text-align: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
}
.profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 4px solid #ff6f61;
}
.profile h2 {
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
}
.profile p {
    color: #777;
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.gallery-container {
    position: relative;
    overflow: hidden;
}
.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.gallery img {
    width: 100%;
    border-radius: 10px;
}
.slider {
    position: relative;
    width: 100%;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.about h2, .blog h2, .contact h2 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}
.blog-post {
    margin-bottom: 20px;
}
.blog-post h3 {
    margin-bottom: 10px;
}
.blog-post p {
    margin: 0;
}
.footer {
    text-align: center;
    padding: 10px;
    background-color: #444;
    color: #fff;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }
    .column {
        width: 100%;
    }
    .navbar a {
        padding: 10px 15px;
    }
}
