.widget-3 .text-box {
    flex: 1;
    padding: 20px;
    background: rgba(144, 202, 249, 0.08);
    border-radius: 10px;
    border-left: 4px solid rgba(100, 181, 246, 0.3);
}
.widget-3 .text-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #0d47a1;
    margin: 0;
    font-weight: 500;
}
.widget-3 .widget-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
/* Heart-warming, gentle, wholesome theme for Tram's Birthday Website */

/* Basic reset and body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Website Logo Styling */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}
.logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
}
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 25%, #90caf9 50%, #e1f5fe 75%, #f3e5f5 100%);
    background-size: 400% 400%;
    animation: backgroundFlow 8s ease infinite;
    min-height: 100vh;
    color: #2c3e50;
    position: relative;
    overflow-x: hidden;
}

/* Animated background */
@keyframes backgroundFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating heart decorations */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(173, 216, 230, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 218, 185, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 90% 70%, rgba(221, 160, 221, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 10% 60%, rgba(255, 182, 193, 0.3) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px, 200px 200px;
    animation: floatingDots 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatingDots {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

/* Subtle sparkle effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Floating hearts */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb3d1'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") 10% 20%,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e1bee7'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") 85% 15%,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b3e5fc'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") 70% 80%,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffcccb'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") 25% 70%;
    background-size: 15px 15px, 12px 12px, 18px 18px, 10px 10px;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: floatingHearts 25s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatingHearts {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-30px) rotate(15deg); opacity: 0.2; }
}

/* Additional cute floating elements */
.container::before {
    content: '💙';
    position: fixed;
    top: 25%;
    right: 8%;
    font-size: 16px;
    opacity: 0.5;
    animation: gentleFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.container::after {
    content: '🌸';
    position: fixed;
    bottom: 20%;
    left: 10%;
    font-size: 14px;
    opacity: 0.5;
    animation: gentleFloat 15s ease-in-out infinite 3s;
    pointer-events: none;
    z-index: -1;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-5px) rotate(-3deg); 
        opacity: 0.5; 
    }
    75% { 
        transform: translateY(-15px) rotate(8deg); 
        opacity: 0.4; 
    }
}

/* Alternative solid background option */
/* 
body {
    background-color: #e1f5fe;
} 
*/

/* Container for the main content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Music Control Button */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#music-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #64b5f6;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    color: #1976d2;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#music-btn:hover {
    background: #64b5f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Birthday Banner Styles */
.birthday-banner {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.3), rgba(255, 167, 38, 0.3), rgba(255, 204, 2, 0.3), rgba(255, 138, 101, 0.3));
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative elements */
.birthday-banner::before {
    content: '🎊';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    animation: bounce 2s infinite;
}

.birthday-banner::after {
    content: '🎊';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    animation: bounce 2s infinite 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Main title styling */
.birthday-banner h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #d32f2f;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 107, 157, 0.3); }
}

/* Subtitle styling */
.birthday-banner p {
    font-size: 1.4rem;
    color: #ad1457;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

/* Widget Styles */
.widget {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Widget 1 - Text Box and Image Layout */
.widget-1 .widget-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.widget-1 .text-box {
    flex: 1;
    padding: 20px;
    background: rgba(144, 202, 249, 0.08);
    border-radius: 10px;
    border-left: 4px solid rgba(100, 181, 246, 0.3);
}

.widget-1 .text-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #0d47a1;
    margin: 0;
    font-weight: 500;
}

.widget-1 .slideshow-container {
    flex: 1;
    text-align: center;
}

.widget-1 #slideshow-1 {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

/* Widget 2 - Same layout as Widget 1 */
.widget-2 .widget-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.widget-2 .text-box {
    flex: 1;
    padding: 20px;
    background: rgba(144, 202, 249, 0.08);
    border-radius: 10px;
    border-left: 4px solid rgba(100, 181, 246, 0.3);
}

.widget-2 .text-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #0d47a1;
    margin: 0;
    font-weight: 500;
}


.slideshow-container {
    flex: 1;
    text-align: center;
}

.slideshow-container img,
.slideshow-container .widget-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
