/* ===== Font Awesome Icons ===== */
.fas {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* ===== CSS Variables ===== */
:root {
    --ivory: #FFFFF0;
    --dusty-rose: #D4A5A5;
    --dusty-rose-light: #E8C4C4;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --dark: #2C2C2C;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--ivory);
    overflow-x: hidden;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.section-title {
    font-size: 3rem;
    color: var(--dusty-rose);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.animate-slide-up-delay-1 {
    animation: slideUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.animate-scale-in-delay-1 {
    animation: scaleIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-scale-in-delay-2 {
    animation: scaleIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-scale-in-delay-3 {
    animation: scaleIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--ivory) 50%, var(--gold-light) 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 240, 0.3) 0%,
        rgba(212, 165, 165, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.date-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.date-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.3em;
}

/* ===== Timing Section ===== */
.timing {
    padding: 6rem 0;
    background-color: var(--white);
}

.timing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.timing-card {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
    border: 1px solid var(--dusty-rose-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.timing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 165, 165, 0.3);
    border-color: var(--gold);
}

.timing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    color: var(--gold);
}

.timing-card h3 {
    font-size: 2rem;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.timing-date {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timing-time {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timing-location {
    font-size: 1.2rem;
    color: var(--dusty-rose);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timing-address {
    font-size: 1rem;
    color: #666;
}

/* ===== Story Section ===== */
.story {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--ivory) 50%, var(--dusty-rose-light) 100%);
    background-attachment: fixed;
    background-size: cover;
}

.story-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.story-column {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--dusty-rose-light);
}

.story-column h3 {
    font-size: 2.5rem;
    color: var(--dusty-rose);
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.story-column p:last-child {
    margin-bottom: 0;
}

/* ===== Wishes Section ===== */
.wishes {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.wish-card {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
    border: 1px solid var(--dusty-rose-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.wish-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.wish-card h3 {
    font-size: 2rem;
    color: var(--dusty-rose);
    margin-bottom: 1.5rem;
}

.wish-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
}

/* ===== Children Section ===== */
.children {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--ivory) 50%, var(--dusty-rose-light) 100%);
    background-attachment: fixed;
    background-size: cover;
}

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

.children-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--dusty-rose-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.children-icon {
    font-size: 4rem;
    color: var(--dusty-rose);
    margin-bottom: 1.5rem;
}

.children-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
}

/* ===== Dress Code Section ===== */
.dresscode {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.dresscode-card {
    background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--ivory) 50%, var(--gold-light) 100%);
    border: 1px solid var(--dusty-rose-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.dresscode-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.dresscode-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
}

.dresscode-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 10px 30px var(--shadow);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 6rem 0;
    background-color: var(--white);
}

/* CSS-Only Slider */
.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide-content {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--ivory) 50%, var(--gold-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.slide-placeholder i {
    font-size: 6rem;
    color: var(--dusty-rose);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.slide-placeholder p {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--dusty-rose);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.slider-dot:hover {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Hide radio inputs */
input[name="slider"] {
    display: none;
}

/* Slider animation based on radio selection */
.slider input[name="slider"]:nth-of-type(1):checked ~ .slider-container {
    transform: translateX(0);
}

.slider input[name="slider"]:nth-of-type(2):checked ~ .slider-container {
    transform: translateX(-100%);
}

.slider input[name="slider"]:nth-of-type(3):checked ~ .slider-container {
    transform: translateX(-200%);
}

.slider input[name="slider"]:nth-of-type(4):checked ~ .slider-container {
    transform: translateX(-300%);
}

.slider input[name="slider"]:nth-of-type(1):checked ~ .slider-nav label:nth-child(1),
.slider input[name="slider"]:nth-of-type(2):checked ~ .slider-nav label:nth-child(2),
.slider input[name="slider"]:nth-of-type(3):checked ~ .slider-nav label:nth-child(3),
.slider input[name="slider"]:nth-of-type(4):checked ~ .slider-nav label:nth-child(4) {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Auto-play animation */
@keyframes slideAuto {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 95% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

.slider-container {
    animation: slideAuto 16s infinite;
}

/* Pause animation on hover */
.slider:hover .slider-container {
    animation-play-state: paused;
}

/* ===== Footer Section ===== */
.footer {
    padding: 6rem 0 3rem;
    position: relative;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--dusty-rose-light) 50%, var(--ivory) 100%);
    background-attachment: fixed;
    background-size: cover;
}

.footer-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 240, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Countdown */
.countdown {
    margin-bottom: 4rem;
}

.countdown h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.countdown-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-number {
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.countdown-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.countdown-note {
    font-size: 1.2rem;
    color: var(--ivory);
    font-style: italic;
}

/* RSVP Form */
.rsvp {
    margin-bottom: 4rem;
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 15px 40px var(--shadow);
}

.form-title {
    font-size: 2rem;
    color: var(--dusty-rose);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    border: 2px solid var(--dusty-rose-light);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
}

.form-note i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.rsvp-button {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, #C5A028 100%);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    width: 100%;
    margin-top: 1rem;
}

.rsvp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #E5C049 0%, var(--gold) 100%);
}

.rsvp-button:active {
    transform: translateY(-2px);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.rsvp-button:hover .button-ripple {
    animation: ripple 0.6s ease-out;
}

/* Contact */
.contact {
    margin-bottom: 3rem;
}

.contact h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.4);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--dusty-rose);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hearts {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    color: var(--dusty-rose);
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }

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

    .timing-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slide-content {
        height: 400px;
    }

    .slide-placeholder i {
        font-size: 5rem;
    }

    .slide-placeholder p {
        font-size: 2rem;
    }

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

    .contact-item:last-child {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-date {
        flex-direction: column;
        gap: 1rem;
    }

    .date-line {
        width: 60px;
    }

    .date-text {
        font-size: 1.4rem;
    }

    .timing {
        padding: 4rem 0;
    }

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

    .timing-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .timing-card {
        padding: 2rem;
    }

    .story {
        padding: 4rem 0;
    }

    .story-column {
        padding: 2rem;
    }

    .story-column h3 {
        font-size: 2rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .slide-content {
        height: 350px;
    }

    .slide-placeholder i {
        font-size: 4rem;
    }

    .slide-placeholder p {
        font-size: 1.8rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .countdown h3 {
        font-size: 1.5rem;
    }

    .countdown-number {
        font-size: 4rem;
    }

    .countdown-label {
        font-size: 1.5rem;
    }

    .rsvp-form {
        padding: 2rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .rsvp-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .contact {
        margin-bottom: 2rem;
    }

    .contact h3 {
        font-size: 1.5rem;
    }

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

    .contact-item:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .contact-item {
        padding: 1.5rem;
    }

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

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-title::after {
        width: 60px;
    }

    .timing-card {
        padding: 1.5rem;
    }

    .timing-icon {
        font-size: 2.5rem;
    }

    .timing-card h3 {
        font-size: 1.5rem;
    }

    .timing-time {
        font-size: 1.5rem;
    }

    .story-column {
        padding: 1.5rem;
    }

    .story-column h3 {
        font-size: 1.8rem;
    }

    .story-column p {
        font-size: 1rem;
    }

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

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-label {
        font-size: 1.2rem;
    }

    .rsvp-form {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .rsvp-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .form-note {
        font-size: 0.8rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-name {
        font-size: 1.1rem;
    }

    .footer-bottom p {
        font-size: 1.3rem;
    }

    .hearts {
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .hero,
    .story,
    .footer {
        background-attachment: scroll;
    }

    .rsvp-button {
        display: none;
    }
}