﻿body {
    background-image: url(https://img.freepik.com/premium-photo/watercolor-paper-texture-background-seamless-texture-tile-ready_463999-10308.jpg?semt=ais_hybrid);
}

h1 {
    font-family: 'Lemon Tuesday', sans-serif;
    margin: 1%;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    filter: drop-shadow(0px 0px 5px gray);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h2 {
    font-family: 'Lemon Tuesday', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    filter: drop-shadow(0px 0px 3px gray);
}

h3 {
    font-family: 'Lemon Tuesday', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    filter: drop-shadow(0px 0px 2px gray);
}

p {
    font-family: 'Montserrat', sans-serif;
    filter: drop-shadow(0px 0px 5px gray);
}

img {
    filter: drop-shadow(0px 0px 10px black);
}

.imgrot {
    transform: rotate(90deg);
    margin-top: 150px;
}

.imgrot2 {
    transform: rotate(-90deg);
    margin-top: 150px;
}

div.gallery {
    margin: 5px;
    float: left;
    width: 360px;
}

div.gallery img {
    width: 180%;
    height: auto;
    margin-top: 150px;
    margin-bottom: 150px;     /* 250px is the width of the image */
    cursor: pointer;
}

.desc{
    margin-top:-30%;
}

/* Added CSS from index.html */
div.cover {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    filter: drop-shadow(0px 0px 10px black);
    padding: 3rem 0;
    margin-bottom: 3rem;
    background-image: url("../images/paper 1.png");
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.profile-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.profile-wrapper h3 {
    margin-top: 1.5rem;
    color: #333;
    font-weight: 600;
    font-size: 1.8rem;
}

.profile-text {
    color: #555;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

div.cover-sub {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: drop-shadow(0px 0px 10px black);
    transform: rotate(90deg);
    background-image: url("../images/paper 3.png");
}

.bg-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: drop-shadow(0px 0px 10px black);
    background-image: url("../images/background 1.png");
    min-height: 350px;
    padding: 2rem;
    margin: 1rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.contact-links {
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.contact-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
}

.contact-links a:hover {
    color: #666;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}

.contact-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.experience-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.experience-link:hover {
    text-decoration: none;
    color: inherit;
}

.experience-card {
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-card:hover {
    transform: scale(1.02);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
}

.experience-card h3 {
    margin-bottom: 1rem;
}

.experience-card p {
    text-align: center;
    max-width: 90%;
}

.bio-container {
    background-image: url("../images/7a34e15813f177d4407374c19b076dbd-removebg-preview.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
    filter: drop-shadow(0px 0px 10px black);
}

.bio-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 10px;
    width: 70%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

[contenteditable="true"] {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: background-color 0.3s ease;
}

[contenteditable="true"]:focus {
    outline: none;
    border-color: #aaa;
    background-color: rgba(255, 255, 255, 0.9);
}

.bio-content h3 i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    padding: 0.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-image {
    max-width: 250px;
    height: auto;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin: 1.5rem auto;
    display: block;
    border-radius: 5px;
}

.contact-icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    margin-top: 1rem;
}

.icon-wrapper {
    text-align: center;
    margin: 0 15px;
}

.contact-icons a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: block;
}

.contact-icons a:hover {
    transform: translateY(-5px);
    color: #555;
}

.contact-icons i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-text {
    font-size: 0.9rem;
}

.conclusion-container {
    background-image: url("../images/7a34e15813f177d4407374c19b076dbd-removebg-preview.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
    filter: drop-shadow(0px 0px 10px black);
}

.conclusion-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 10px;
    width: 70%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.video-grid {
    max-width: 80%;
    margin: 0 auto;
}

.footer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

.footer-divider {
    margin: 0 10px;
    color: #999;
}

.footer-note {
    color: #888;
    font-style: italic;
}

/* Media Queries */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        white-space: normal;
        word-wrap: break-word;
    }

    .bio-container {
        min-height: 400px;
    }

    .bio-content {
        width: 90%;
        padding: 1.5rem;
    }

    .experience-icon {
        font-size: 2rem;
    }

    .contact-links .row {
        flex-direction: column;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .hero-content {
        width: 90%;
        padding: 1.5rem;
    }

    .profile-image {
        max-width: 200px;
    }

    .contact-icons {
        flex-direction: row;
        width: 100%;
    }

    .icon-wrapper {
        margin: 0 10px;
    }

    .contact-icons i {
        font-size: 1.5rem;
    }

    .contact-text {
        font-size: 0.8rem;
    }

    .conclusion-container {
        min-height: 500px;
    }

    .conclusion-content {
        width: 90%;
        padding: 1.5rem;
    }

    .video-grid {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .bio-container {
        min-height: 300px;
    }

    .bio-content {
        width: 95%;
        padding: 1rem;
    }

    .hero-content {
        width: 95%;
        padding: 1rem;
    }

    .profile-image {
        max-width: 150px;
        margin: 1rem auto;
    }

    .profile-wrapper {
        margin-bottom: 1rem;
    }

    .contact-icons {
        flex-wrap: wrap;
    }

    .icon-wrapper {
        margin: 0.5rem;
        flex: 0 0 30%;
    }

    .contact-icons i {
        font-size: 1.3rem;
    }

    .contact-text {
        font-size: 0.7rem;
    }

    .conclusion-container {
        min-height: 400px;
    }

    .conclusion-content {
        width: 95%;
        padding: 1rem;
    }
}
