body {
font-family: "Segoe UI", Arial, sans-serif;
margin: 0;
background-color: #fff8e7;
color: #222;
text-align: center;
}

header {
background: linear-gradient(135deg, #ffcc00, #ff6699);
color: black;
padding: 20px;
}

.logo img {
width: 120px;
border-radius: 50%;
}

.logo h1 {
margin: 10px 0 0;
font-size: 1.8em;
}

.logo p {
margin: 5px 0 0;
font-size: 1.1em;
color: #222;
font-weight: 500;
}

section {
padding: 40px 20px;
}

h2 {
color: #ff6699;
border-bottom: 2px solid #ffcc00;
display: inline-block;
padding-bottom: 5px;
}

ul {
list-style: none;
padding: 0;
}

ul li {
margin: 10px 0;
font-size: 1.2em;
}

.gallery {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}

.gallery img {
width: 50px;
border: 3px solid #ffcc00;
border-radius: 5px;}

.gallery1 {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}

.gallery1 img {
width: 100px;
border: 3px solid #ffcc00;
border-radius: 5px;
}
.gallery2 {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}

.gallery2 img {
width: 500px;
height:300px;
border: 3px solid #ffcc00;
border-radius: 5px;
}

.personal_videos {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}

.personal_videos img {
width: 325px;
height:220px;
border: 3px solid #ffcc00;
border-radius: 5px;
}
footer {
background-color: #111;
color: white;
padding: 15px;
font-size: 0.9em;
}

#videoContainer {
            display: none;
        }
        #imageContainer, #videoContainer {
            max-width: 600px;
            margin: 20px auto;
            text-align: center;
        }
        img {
            cursor: pointer;
            max-width: 100%;
            border: 2px solid #333;
        }
        video {
            max-width: 100%;
            border: 2px solid #333;
        }
		
a {
color: #ff6699;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

.hover-zoom {
            transition: transform 0.3s ease; /* Smooth transition */
            width: 300px; /* Initial width */
            height: auto;
        }
        .hover-zoom:hover {
            transform: scale(2.0); /* Makes the image 1.3 times bigger */
            z-index: 2; /* Brings the image up in case of overlap */
        }