:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --text-color: #2d3436;
    --background-color: #f7f1e3;
    --accent-color: #45B7D1;
    --gradient-1: #FF6B6B;
    --gradient-2: #4ECDC4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation */
nav {
    display: none; /* Hide the navigation */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../assets/pc-background.png') center/cover no-repeat;
    padding: 2rem;
}

/* Mobile background */
@media (max-width: 768px) {
    .hero {
        background: url('../assets/background.jpg') center/cover no-repeat;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    white-space: nowrap;
}

.hero-content p:first-of-type {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p:first-of-type {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p:first-of-type {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Gallery Section */
.memory-gallery {
    padding: 5rem 2rem;
    background: linear-gradient(-45deg, #FF6B6B, #4ECDC4, #45B7D1, #FF6B6B);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced floating particles effect */
.memory-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.4) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.4) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.8;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(360deg); }
}

/* Add new gallery title section */
.gallery-title-section {
    width: 100%;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-title-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem 3rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-title-container::before {
    content: '📸';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: floatCamera 3s ease-in-out infinite;
}

.gallery-title-container::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.gallery-title {
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    white-space: nowrap;
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes floatCamera {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Enhanced grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Enhanced card design */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Enhanced hover effects */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Enhanced content overlay */
.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
}

/* Enhanced play button for videos */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-title-container {
        padding: 1.5rem 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f6f8ff, #f1f8ff);
    overflow: hidden;
}

/* Enhanced floating background */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced title styling */
.timeline h2 {
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2d3436;
    padding: 2rem;
}

/* "Our Journey" Badge */
.timeline h2::before {
    content: 'Our Journey';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(78, 205, 196, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Roboto', sans-serif;
}

/* Subtitle */
.timeline h2::after {
    content: 'Key moments that defined our journey';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: normal;
    width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Enhanced timeline line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #4ECDC4, #45B7D1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

/* Timeline items */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* Enhanced content box */
.timeline-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(5px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Enhanced timeline dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    top: 25px;
    background: white;
    border: 4px solid #4ECDC4;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-item:hover::after {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(78, 205, 196, 0.3);
}

/* Content styling */
.timeline-content h3 {
    color: #4ECDC4;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #45B7D1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #2d3436;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .timeline h2 {
        font-size: 2.8rem;
        white-space: normal;
        line-height: 1.2;
    }

    .timeline h2::before {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        top: -30px;
    }

    .timeline h2::after {
        font-size: 1rem;
        bottom: -25px;
        padding: 0 1rem;
    }
    
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
        right: auto;
    }
    
    .timeline-item .timeline-content::before {
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent white transparent transparent;
    }
}

/* Message From Heart Section */
.memories-wall {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced floating background */
.memories-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced title styling */
.memories-wall h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-bottom: 1.5rem;
}

.memories-wall h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.memories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Enhanced card styling */
.memory-card {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.95)),
                url('../assets/Screenshot 2025-02-16 162751.png') center/cover;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 200px;
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.98)),
                url('../assets/Screenshot 2025-02-16 162751.png') center/cover;
}

.memory-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.memory-content {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3436;
    font-family: 'Dancing Script', cursive;
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .memories-wall {
        padding: 3rem 1rem;
    }

    .memories-wall h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .memories-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .memory-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
        min-height: 180px; /* Adjusted for mobile */
    }

    .memory-card::before {
        font-size: 3rem;
    }

    .memory-content {
        font-size: 1.3rem;
        line-height: 1.6;
        padding: 0.5rem;
        font-weight: 700;
    }

    /* Add touch feedback */
    .memory-card:active {
        transform: scale(0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background: linear-gradient(rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.99)),
                    url('../assets/Screenshot 2025-02-16 162751.png') center/cover;
    }
}

/* Small screen optimization */
@media (max-width: 480px) {
    .memories-wall h2 {
        font-size: 2rem;
    }

    .memory-card {
        padding: 1.25rem;
    }

    .memory-content {
        font-size: 1.2rem;
        font-weight: 700;
    }
}

/* Add loading animation */
.memory-card.loading {
    animation: cardPulse 1.5s ease-in-out infinite;
}

@keyframes cardPulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #45B7D1, #4ECDC4);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stylized heart animation */
footer p .heart {
    color: #FF6B6B;
    display: inline-block;
    animation: heartBeat 1.5s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Enhanced QR code container */
#qrcode {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

#qrcode::before {
    content: '📱';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

#qrcode:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#qrcode img {
    display: block;
    max-width: 150px;
    height: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding: 2.5rem 1.5rem;
    }

    footer p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    #qrcode {
        padding: 1.2rem;
    }

    #qrcode img {
        max-width: 130px;
    }
}

/* Small screen optimization */
@media (max-width: 480px) {
    footer p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    #qrcode {
        padding: 1rem;
    }

    #qrcode img {
        max-width: 120px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    transform-origin: center center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.lightbox-image.zoomed {
    cursor: grab;
}

.lightbox-image.zoomed:active {
    cursor: grabbing;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Add zoom controls */
.zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem;
    border-radius: 20px;
}

.zoom-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .lightbox-content {
        max-width: 95vw;
    }
}

/* Professional video player styles */
.video-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-info {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 0;
    color: white;
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.video-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.video-description {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
    }

    .video-info {
        padding: 0.75rem;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-description {
        font-size: 0.9rem;
    }
}

/* Video title pill style */
.video-title-pill {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(69, 183, 209, 0.9);
    padding: 12px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Close button (X style) */
.video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-close:hover {
    opacity: 1;
}

/* Video controls */
.plyr--video .plyr__controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* Update QR code styles */
#qrcode {
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#qrcode img {
    display: block;
    image-rendering: pixelated;  /* For clearer QR code */
}

#qrcode:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

footer p + #qrcode {
    margin-top: 2rem;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/krishna-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out;
}

.home-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-content h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.home-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(246, 114, 128, 0.4);
    background: white;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Add decorative elements */
.home-content::before,
.home-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('../images/floral-decoration.png') no-repeat center/contain;
    opacity: 0.2;
}

.home-content::before {
    top: 20px;
    left: 20px;
    transform: rotate(-45deg);
}

.home-content::after {
    bottom: 20px;
    right: 20px;
    transform: rotate(135deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-content {
        padding: 2rem;
        margin: 1rem;
    }

    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content h3 {
        font-size: 1.2rem;
    }

    .home-content p {
        font-size: 1rem;
    }
}

.video-preview {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.video-preview img,
.video-preview video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 183, 255, 0.9);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button:hover {
    background-color: rgba(0, 163, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
} 