/* ================================================
   PHOTOGRAPHY-THEMED 18TH BIRTHDAY INVITATION
   For: Andreea's Majorat
   Theme: Vintage Photography & Camera Aesthetics
   ================================================ */

/* CSS Variables */
:root {
    --primary-color: #c45a8a;
    --secondary-color: #d4709b;
    --accent-gold: #e8a0c0;
    --accent-amber: #f4a6c8;
    --text-dark: #6b2d4f;
    --text-light: #8b4c6f;
    --bg-light: #fff5f9;
    --bg-cream: #fff0f6;
    --shadow-soft: rgba(196, 90, 138, 0.15);
    --shadow-medium: rgba(196, 90, 138, 0.25);
    --shadow-strong: rgba(196, 90, 138, 0.35);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   WELCOME SCREEN
   ================================================ */

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #c45a8a 0%, #d4709b 50%, #e8a0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.welcome-screen.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

/* Shutter Animation Overlays */
.shutter-overlay {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    z-index: 10000;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.shutter-left {
    left: 0;
    transform: translateX(0);  /* Start closed */
}

.shutter-right {
    right: 0;
    transform: translateX(0);  /* Start closed */
}

/* Auto-open shutters after page load */
.welcome-screen.ready .shutter-left {
    transform: translateX(-100%);
}

.welcome-screen.ready .shutter-right {
    transform: translateX(100%);
}

/* Close shutters when clicking button */
.welcome-screen.closing .shutter-left {
    transform: translateX(0);
}

.welcome-screen.closing .shutter-right {
    transform: translateX(0);
}

/* Film Strip Decorations */
.film-strip {
    position: absolute;
    width: 60px;
    height: 100%;
    background: rgba(232, 160, 192, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
    z-index: 1;
    transition: transform 0.1s ease-out;
    overflow: hidden;
}

.film-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400%;
    background: repeating-linear-gradient(
        180deg,
        rgba(232, 160, 192, 0.4) 0px,
        rgba(232, 160, 192, 0.4) 8px,
        transparent 8px,
        transparent 28px
    );
    transform: translateY(-35%);
}

.film-left {
    left: 20px;
}

.film-right {
    right: 20px;
}

/* Welcome Content */
.welcome-content {
    position: relative;
    z-index: 10001;
    text-align: center;
    color: white;
    max-width: 600px;
    max-height: 90vh;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    animation: fadeInUp 1s ease-out;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for Chrome/Safari */
.welcome-content::-webkit-scrollbar {
    display: none;
}

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

.camera-icon {
    color: var(--accent-gold);
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.camera-icon svg {
    width: 60px;
    height: 60px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.majorat-number {
    font-size: 100px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(232, 160, 192, 0.5);
    animation: numberReveal 1.2s ease-out;
}

@keyframes numberReveal {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.welcome-title {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.welcome-name {
    font-family: 'Great Vibes', cursive;
    font-size: 56px;
    margin-bottom: 15px;
    color: var(--accent-gold);
    font-weight: 400;
    text-shadow: 0 0 20px rgba(232, 160, 192, 0.3);
}

.welcome-subtitle {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
}

/* Polaroid Preview */
.polaroid-preview {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    animation: floatPolaroid 3s ease-in-out infinite;
}

@keyframes floatPolaroid {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.polaroid-frame {
    background: white;
    padding: 15px;
    padding-bottom: 50px;
    box-shadow: 0 10px 40px rgba(139, 76, 111, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid-image {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #e8a0c0 0%, #f4a6c8 100%);
    background-image: url('imgs/img10.jpeg');
    background-size: cover;
    background-position: center;
}

.polaroid-caption {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    color: var(--text-dark);
    font-size: 20px;
    margin-top: 15px;
}

/* Open Button */
.open-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(232, 160, 192, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    position: relative;
    z-index: 10002;
    opacity: 1 !important;
    visibility: visible !important;
}

.open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 160, 192, 0.6);
}

.open-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.open-btn:hover .btn-icon {
    transform: rotate(360deg);
}

/* Floating Cameras */
.floating-cameras {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Flash Particles */
.flash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ================================================
   MAIN INVITATION
   ================================================ */

.main-invitation {
    display: none;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.main-invitation.visible {
    display: block;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #c45a8a 0%, #d4709b 100%);
}

.hero-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('imgs/img10.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(107, 45, 79, 0.5) 0%,
        rgba(139, 76, 111, 0.4) 50%,
        rgba(107, 45, 79, 0.5) 100%);
    z-index: 1;
}

/* Vintage Camera Decorations */
.vintage-camera {
    position: absolute;
    z-index: 2;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.vintage-left {
    top: 15%;
    left: 5%;
}

.vintage-right {
    bottom: 15%;
    right: 5%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Light Leak Effects */
.light-leak {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    animation: lightPulse 8s ease-in-out infinite;
}

.light-leak-1 {
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
}

.light-leak-2 {
    bottom: 15%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-amber), transparent);
    animation-delay: -4s;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.2);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px;
}

.aperture-decoration {
    margin-bottom: 30px;
    animation: rotateAperture 20s linear infinite;
}

@keyframes rotateAperture {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out 0.3s backwards;
}

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

.badge-inner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    padding: 12px 35px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(232, 160, 192, 0.4);
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 4px rgba(139, 76, 111, 0.2);
}

.hero-name {
    font-family: 'Great Vibes', cursive;
    font-size: 120px;
    font-weight: 400;
    margin: 20px 0;
    color: var(--accent-gold);
    text-shadow: 0 5px 30px rgba(232, 160, 192, 0.5);
    animation: fadeInScale 1s ease-out 0.5s backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.hero-age {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: white;
    margin: 20px 0;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.hero-date {
    font-size: 24px;
    font-weight: 300;
    margin: 10px 0;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.hero-location {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 1.3s backwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ================================================
   QUOTE SECTION
   ================================================ */

.quote-section {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    opacity: 0.2;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-gold);
    font-style: normal;
}

/* Film Roll Decoration */
.film-roll-decoration {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.film-holes {
    display: flex;
    gap: 20px;
}

.film-holes span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.3;
}

/* ================================================
   INVITATION MESSAGE
   ================================================ */

.invitation-message {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 20px auto;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

.message-text p {
    margin-bottom: 20px;
}

.message-text p:first-child {
    font-weight: 600;
    color: var(--accent-gold);
}

.message-text p:last-child {
    font-style: italic;
    font-size: 20px;
    margin-top: 30px;
}

/* ================================================
   EVENT DETAILS
   ================================================ */

.event-details {
    padding: 100px 20px;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -10px;
    margin-bottom: 60px;
    font-style: italic;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    border: 2px solid #ffe6f0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 112, 155, 0.1);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 160, 192, 0.2);
    border-color: var(--accent-gold);
}

.card-icon {
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-detail {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--accent-amber);
    transform: translateX(5px);
}

/* ================================================
   TIMELINE SECTION
   ================================================ */

.timeline-section {
    padding: 100px 20px;
    background: var(--bg-cream);
    position: relative;
}

.timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,
        var(--accent-gold) 0%,
        var(--accent-amber) 50%,
        var(--accent-gold) 100%);
    opacity: 0.3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
    grid-row: 1;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-year {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(232, 160, 192, 0.4);
    border: 5px solid var(--bg-cream);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Polaroid Cards */
.polaroid-card {
    background: white;
    padding: 15px;
    padding-bottom: 50px;
    box-shadow: 0 10px 30px rgba(139, 76, 111, 0.15);
    margin-bottom: 20px;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    display: inline-block;
}

.timeline-item:nth-child(even) .polaroid-card {
    transform: rotate(2deg);
}

.polaroid-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 76, 111, 0.2);
}

.polaroid-img {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.polaroid-text {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 15px;
}

.polaroid-golden {
    border: 3px solid var(--accent-gold);
    transform: rotate(0deg) !important;
}

/* ================================================
   GALLERY SECTION
   ================================================ */

.gallery-section {
    padding: 100px 20px;
    background: white;
}

.film-strip-gallery {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    padding: 40px 0;
}

.film-strip-edge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        rgba(232, 160, 192, 0.2) 15px,
        rgba(232, 160, 192, 0.2) 25px
    );
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.film-strip-edge:last-child {
    top: auto;
    bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(139, 76, 111, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(107, 45, 79, 0.85),
        rgba(232, 160, 192, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 39, 56, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(232, 160, 192, 0.3);
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    background: rgba(139, 76, 111, 0.7);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================================================
   WISH SECTION
   ================================================ */

.wish-section {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.wish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.wish-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(139, 76, 111, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.wish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 160, 192, 0.2);
}

.wish-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.wish-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.wish-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ================================================
   RSVP SECTION
   ================================================ */

.rsvp-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.rsvp-content {
    max-width: 700px;
    margin: 0 auto;
}

.rsvp-camera-icon {
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.rsvp-section .section-title {
    color: white;
}

.rsvp-section .section-title::after {
    background: linear-gradient(to right, transparent, white, transparent);
}

.rsvp-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 30px 0 40px;
    opacity: 0.9;
}

.rsvp-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.rsvp-contacts {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.rsvp-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(232, 160, 192, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rsvp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 160, 192, 0.6);
}

.rsvp-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.rsvp-note {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rsvp-note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    padding: 80px 20px 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.footer-camera {
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.footer-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-signature {
    margin: 40px 0;
}

.footer-signature p {
    font-size: 18px;
    margin: 5px 0;
}

.signature-name {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--accent-gold);
}

.footer-hearts {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 24px;
    margin: 40px 0;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
   MUSIC TOGGLE
   ================================================ */

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(232, 160, 192, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(232, 160, 192, 0.6);
}

.music-icon {
    color: white;
}

.music-pause {
    display: none;
}

.music-toggle.playing .music-play {
    display: none;
}

.music-toggle.playing .music-pause {
    display: block;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    /* Welcome Screen */
    .majorat-number {
        font-size: 80px;
    }

    .welcome-name {
        font-size: 48px;
    }

    .welcome-subtitle {
        font-size: 16px;
    }

    .polaroid-image {
        width: 150px;
        height: 150px;
    }

    .film-strip {
        width: 30px;
    }

    .film-left {
        left: 5px;
    }

    .film-right {
        right: 5px;
    }

    /* Hero Section */
    .hero-parallax-bg {
        background-attachment: scroll;
    }

    .hero-name {
        font-size: 64px;
    }

    .hero-age {
        font-size: 36px;
    }

    .hero-date {
        font-size: 18px;
    }

    .vintage-camera {
        display: none;
    }

    /* Typography */
    .section-title {
        font-size: 36px;
    }

    .quote-text {
        font-size: 24px;
    }

    .message-text {
        font-size: 16px;
    }

    /* Timeline */
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    .timeline-marker {
        grid-column: 1;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        grid-column: 1;
    }

    .marker-year {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .polaroid-img {
        width: 150px;
        height: 150px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    /* Details Grid */
    .details-grid {
        grid-template-columns: 1fr;
    }

    /* Wish Grid */
    .wish-grid {
        grid-template-columns: 1fr;
    }

    /* RSVP */
    .rsvp-contacts {
        flex-direction: column;
    }

    .rsvp-btn {
        width: 100%;
        justify-content: center;
    }

    /* Music Toggle */
    .music-toggle {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .welcome-content {
        padding: 15px;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .camera-icon {
        margin-bottom: 10px;
    }

    .camera-icon svg {
        width: 40px;
        height: 40px;
    }

    .majorat-number {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .welcome-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .welcome-name {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .welcome-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .polaroid-preview {
        margin: 15px 0;
    }

    .polaroid-frame {
        padding: 10px;
        padding-bottom: 35px;
    }

    .polaroid-image {
        width: 120px;
        height: 120px;
    }

    .polaroid-caption {
        font-size: 16px;
        margin-top: 10px;
    }

    .open-btn {
        padding: 14px 30px;
        font-size: 15px;
        margin-top: 5px;
    }

    .hero-name {
        font-size: 48px;
    }

    .section-title {
        font-size: 28px;
    }

    .quote-text {
        font-size: 20px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .music-toggle,
    .scroll-indicator,
    .welcome-screen {
        display: none !important;
    }

    .main-invitation {
        display: block !important;
        opacity: 1 !important;
    }

    body {
        background: white;
    }
}
