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

:root {
    --primary-color: #ff1493;
    --secondary-color: #ff69b4;
    --accent-color: #ffb6c1;
    --dark-bg: #2d1b3d;
    --light-bg: #ffffff;
    --text-dark: #2d1b3d;
    --text-light: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'B Nazanin', 'Tahoma';
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Disable pull-to-refresh on mobile */
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    text-align: center;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9), rgba(255, 105, 180, 0.9));
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 99;
    width: 100%;
    box-sizing: border-box;
}

.heart-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    animation: pulse 2s infinite;
}

.title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Navigation */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    flex-wrap: nowrap;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    will-change: transform;
    box-sizing: border-box;
}

.nav-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.nav-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}

/* Language Selector Dropdown */
.language-selector {
    position: relative;
    margin-left: auto;
    z-index: 101;
}

.language-toggle {
    padding: 0.6rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: scale(1.05);
}

.language-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.language-toggle.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}

/* Language Dropdown Menu */
.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 102;
}

.language-dropdown.active {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.language-option {
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 20, 147, 0.1);
    padding-left: 1.5rem;
}

.language-option.active {
    background: rgba(255, 20, 147, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

/* Scrollbar styling for language dropdown */
.language-dropdown::-webkit-scrollbar {
    width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 20, 147, 0.3);
    border-radius: 3px;
}

.language-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 20, 147, 0.6);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

.section {
    display: none;
    animation: fadeIn 0.6s ease-in;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 100px;
}

.section.active {
    display: block;
}

/* For consolidated navigation sections */
.section.active + .section.active {
    margin-top: 1rem;
}

/* Content Tabs Navigation */
.content-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.content-tab-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.content-tab-btn:hover {
    background: rgba(255, 20, 147, 0.1);
}

.content-tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.content-tab-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Content Tab Sections */
.content-tab-section {
    display: none !important;
}

.content-tab-section.active {
    display: block !important;
}

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

/* Home Section */
.hero-content {
    text-align: center;
    padding: 2rem;
}

.animated-heart {
    font-size: 4rem;
    display: inline-block;
    animation: bounce 2s infinite;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.cta-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Message Cards */
.message-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.message-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(255, 105, 180, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

.message-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 20, 147, 0.2);
    border-left-color: var(--secondary-color);
}

.message-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s infinite;
}

.message-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.message-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    margin-bottom: 2rem;
    padding-right: 3rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    right: -12px;
    top: 0;
    font-size: 1.8rem;
    width: 26px;
    height: 26px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.1);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(255, 105, 180, 0.05));
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
    border-color: var(--primary-color);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.gallery-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Tribute */
.tribute-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tribute-item {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 105, 180, 0.08));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.tribute-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tribute-item ul {
    list-style: none;
    padding: 0;
}

.tribute-item li {
    padding: 0.7rem 0;
    padding-right: 1.5rem;
    color: #555;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    position: relative;
}

.tribute-item li:before {
    content: '💖';
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.tribute-item li:last-child {
    border-bottom: none;
}

.final-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 105, 180, 0.15));
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.final-message p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0.8rem 0;
    line-height: 1.8;
    font-weight: 500;
}

.final-message p:last-child {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 27, 61, 0.9);
    color: white;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Floating Heart Button */
.floating-heart {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-heart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.floating-heart:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@keyframes heartFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 1rem;
    }

    .heart-icon {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }

    .title {
        font-size: 1.4rem;
        margin-bottom: 0.15rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .nav-menu {
        padding: 0.8rem 1rem;
        gap: 0.3rem;
    }

    .language-selector {
        margin-left: 0.5rem;
    }

    .language-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }

    .language-dropdown {
        min-width: 180px;
        max-height: 350px;
    }

    .language-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    main {
        padding: 0 1rem 2rem 1rem;
    }

    .section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .animated-heart {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .message-container {
        grid-template-columns: 1fr;
    }

    .message-card {
        padding: 1.5rem 1rem;
    }

    .tribute-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .floating-heart {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem 1rem;
    }

    .heart-icon {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .title {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
    }

    .subtitle {
        font-size: 0.7rem;
    }

    .nav-menu {
        padding: 0.7rem 0.5rem;
        gap: 0.2rem;
    }

    .language-selector {
        margin-left: 0.3rem;
    }

    .language-toggle {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }

    .language-dropdown {
        min-width: 160px;
        max-height: 300px;
        right: -10px;
    }

    .language-option {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    main {
        padding: 0 1rem 2rem 1rem;
    }

    .section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .animated-heart {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .welcome-text {
        font-size: 0.95rem;
    }

    .message-card {
        padding: 1rem;
    }

    .message-icon {
        font-size: 2rem;
    }

    .timeline {
        padding: 1rem 0;
    }

    .timeline::before {
        right: 10px;
    }

    .timeline-marker {
        right: -18px;
        font-size: 1.3rem;
    }

    .timeline-item {
        padding-right: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-placeholder {
        font-size: 2.5rem;
    }

    .tribute-item {
        padding: 1.5rem 1rem;
    }

    .tribute-item h3 {
        font-size: 1.05rem;
    }

    .tribute-item li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .final-message {
        padding: 1.5rem 1rem;
    }

    .final-message p {
        font-size: 0.95rem;
    }

    .final-message p:last-child {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        padding: 1rem 0.5rem;
        gap: 0.2rem;
    }

    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .floating-heart {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        left: 1rem;
    }
}

/* Stories Section */
.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 105, 180, 0.08));
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.2);
}

.story-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: bold;
}

.story-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.story-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-reflection {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    border-right: 3px solid var(--primary-color);
    padding-right: 1rem;
    margin-right: 0;
}

/* Special Moments Section */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.moment-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(255, 105, 180, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.moment-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 105, 180, 0.15));
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
}

.moment-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    animation: float 3s infinite;
}

.moment-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.moment-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact/WhatsApp Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.08), rgba(52, 168, 83, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(52, 168, 83, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #34a853;
    box-shadow: 0 12px 30px rgba(52, 168, 83, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #34a853, #34a853);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}

.whatsapp-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.whatsapp-btn.secondary {
    background: linear-gradient(135deg, #25a245, #1f8a38);
}

.whatsapp-icon {
    display: inline-block;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.share-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.share-icon {
    display: inline-block;
}

.whatsapp-info {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.05));
    border-radius: 12px;
    border: 2px dashed rgba(52, 168, 83, 0.3);
}

.whatsapp-info p {
    color: #333;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.whatsapp-info strong {
    color: #34a853;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.gallery-tab-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Updated Gallery with Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 20, 147, 0.2);
    position: relative;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.favorite-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.favorited {
    background: rgba(255, 20, 147, 0.9);
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: white;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 1001;
}

.lightbox-nav button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-nav button:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 105, 180, 0.08));
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 25px rgba(255, 20, 147, 0.2);
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.installation-guide {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.installation-guide h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.guide-section {
    margin-bottom: 1.5rem;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.guide-section ol {
    padding-right: 2rem;
    color: #666;
    line-height: 1.8;
}

.guide-section li {
    margin-bottom: 0.5rem;
}

/* Install Prompt */
.install-prompt {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 900;
    animation: slideUp 0.3s ease;
}

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

.install-prompt p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
}

.install-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.install-yes,
.install-no {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.install-yes {
    background: var(--primary-color);
    color: white;
}

.install-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}

.install-no {
    background: #f0f0f0;
    color: var(--text-dark);
}

.install-no:hover {
    background: #e0e0e0;
}

/* Responsive Stories & Moments */
@media (max-width: 768px) {
    .stories-container {
        grid-template-columns: 1fr;
    }

    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .story-number {
        font-size: 2rem;
    }

    .moment-emoji {
        font-size: 2.5rem;
    }

    .whatsapp-btn,
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stories-container {
        grid-template-columns: 1fr;
    }

    .moments-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-number {
        font-size: 1.5rem;
        left: 1rem;
    }

    .story-reflection {
        border-right-width: 2px;
        padding-right: 0.8rem;
    }

    .moment-item {
        padding: 1rem;
    }

    .moment-emoji {
        font-size: 2rem;
    }

    .moment-item h4 {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .whatsapp-btn,
    .share-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 150px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .gallery-tabs {
        gap: 0.5rem;
    }

    .gallery-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .installation-guide {
        padding: 1.5rem;
    }

    .install-prompt {
        bottom: 70px;
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-item img {
        height: 120px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 5px;
        right: 10px;
    }

    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .guide-section ol {
        padding-right: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Gallery Lock/Protection */
.gallery-lock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    min-height: 500px;
    overflow: hidden;
}

.gallery-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.lock-content {
    text-align: center;
    max-width: 400px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounceIcon 2s infinite;
}

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

.lock-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lock-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.password-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.password-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
    background: rgba(255, 20, 147, 0.02);
}

.unlock-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    font-family: inherit;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
}

.unlock-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.unlock-btn:active {
    transform: translateY(0);
}

.lock-hint {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
}

.lock-error {
    color: #ff1493;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.gallery-content {
    animation: fadeIn 0.6s ease-in;
}

/* WhatsApp Chatbox */
.chatbox-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    font-family: inherit;
}

.chatbox-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34a853, #25a245);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.6);
}

.chatbox-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.chatbox-toggle.active {
    background: linear-gradient(135deg, #25a245, #1f8a38);
}

.chatbox-window {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 999;
    animation: slideUp 0.3s ease;
}

.chatbox-window.active {
    display: flex;
}

.chatbox-header {
    background: linear-gradient(135deg, #34a853, #25a245);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbox-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chatbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.chatbox-close:hover {
    transform: rotate(90deg);
}

.chatbox-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f5f5f5;
}

.message {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

.message.bot {
    text-align: left;
}

.message.user {
    text-align: right;
}

.message-bubble {
    display: inline-block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot .message-bubble {
    background: white;
    color: #333;
    border-left: 3px solid #34a853;
}

.message.user .message-bubble {
    background: #34a853;
    color: white;
}

.chatbox-footer {
    padding: 1rem;
    border-top: 1px solid #ddd;
    background: white;
    border-radius: 0 0 12px 12px;
    display: flex;
    gap: 0.8rem;
}

.chatbox-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.chatbox-input:focus {
    outline: none;
    border-color: #34a853;
    box-shadow: 0 0 5px rgba(52, 168, 83, 0.2);
}

.chatbox-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34a853, #25a245);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-send:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(52, 168, 83, 0.3);
}

.chatbox-send:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Chatbox */
@media (max-width: 480px) {
    .chatbox-window {
        width: calc(100% - 40px);
        height: 400px;
        bottom: 80px;
    }

    .message-bubble {
        max-width: 90%;
    }
}