/* ===================================
   WEDDING WEBSITE - GUSTAVO & JÚLIA
   Traditional Catholic Theme
   =================================== */

/* Custom Fonts */
@font-face {
    font-family: 'Aniyah';
    src: url('../fonts/aniyah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Grey Olive Theme */
:root {
    /* Olive Green Colors */
    --olive: #6B7F5B;
    --dark-olive: #556B2F;
    --light-olive: #8B9B7A;

    /* Grey Colors */
    --warm-grey: #8B8B83;
    --light-grey: #A8A39D;
    --medium-grey: #6B6B66;
    --dark-grey: #3C3C3C;
    --charcoal: #2F2F2F;

    /* Neutral Colors */
    --cream: #F5F5F0;
    --soft-cream: #E8E8E0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;

    /* Legacy naming for compatibility */
    --gold: var(--olive);
    --dark-gold: var(--dark-olive);
    --burgundy: var(--dark-olive);
    --dark-burgundy: var(--charcoal);
    --ivory: var(--cream);
    --light-gray: var(--soft-cream);
    --medium-gray: var(--medium-grey);
    --dark-gray: var(--dark-grey);

    /* Font Variables */
    --font-cursive: 'Aniyah', cursive;
    --font-serif: 'Cinzel', 'Georgia', serif;
    --font-sans: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Cinzel', 'Arial', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================
   HEADER & NAVIGATION
   ================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.nav-list a {
    color: var(--dark-gray);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--burgundy);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    padding: 100px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(107, 127, 91, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 139, 131, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.cross-ornament {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.names {
    font-family: var(--font-cursive);
    font-size: clamp(48px, 8vw, 80px);
    color: var(--dark-olive);
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: slideDown 1s ease-out;
}

.ampersand {
    font-family: var(--font-cursive);
    font-style: normal;
    color: var(--olive);
    font-size: 1.2em;
    margin: 0 10px;
}

.family-name {
    font-family: var(--font-sans);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--dark-gold);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in;
}

.divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 30px auto;
}

.wedding-date {
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 2px;
}

.wedding-day {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.hero-ornament {
    font-size: 30px;
    color: var(--gold);
    margin-top: 50px;
}

/* ==================
   SECTION STYLES
   ================== */

.section {
    padding: 80px 20px;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-cursive);
    font-size: clamp(36px, 5vw, 48px);
    color: var(--dark-olive);
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

.section-ornament {
    text-align: center;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ==================
   SCHEDULE SECTION
   ================== */

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

.timeline::before {
    content: '';
    position: absolute;
    left: 130px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--dark-gold));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    align-items: center;
}

.timeline-time {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--burgundy);
    min-width: 100px;
    text-align: right;
    position: relative;
}

.timeline-time::after {
    content: '✦';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
    background: var(--cream);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section:nth-child(even) .timeline-time::after {
    background: var(--white);
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
}

.timeline-content h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--medium-gray);
    font-size: 16px;
}

/* ==================
   VENUE SECTION
   ================== */

.venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.venue-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-section .venue-card {
    background: var(--cream);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.venue-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.venue-card h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.venue-name {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.venue-address {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.map-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--olive);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(107, 127, 91, 0.2);
}

.map-link:hover {
    background: var(--dark-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 127, 91, 0.3);
}

.dress-code {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.dress-code h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.dress-code-main {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.dress-code-restrictions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
}

.restrictions-title {
    font-size: 16px;
    color: var(--dark-olive);
    margin-bottom: 12px;
}

.restrictions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
}

.restrictions-list li {
    font-size: 14px;
    color: var(--medium-grey);
    line-height: 1.8;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.restrictions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-weight: bold;
}

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

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-size: 18px;
    border: 2px dashed #ccc;
}

.gallery-note {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.closing {
    animation: fadeOut 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(107, 127, 91, 0.5);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    text-align: center;
}

/* ==================
   GIFTS SECTION
   ================== */

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gift-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.gift-card.purchased {
    opacity: 0.6;
    pointer-events: none;
}

.gift-card.special-gift {
    border: 2px solid var(--olive);
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.gift-card.special-gift:hover {
    border-color: var(--dark-olive);
    box-shadow: 0 6px 25px rgba(107, 127, 91, 0.2);
}

.gift-card.special-gift .gift-image-placeholder {
    background: linear-gradient(135deg, var(--olive), var(--dark-olive));
    color: var(--white);
}

.gift-card.special-gift .gift-name {
    color: var(--dark-olive);
}

.gift-card.special-gift .gift-status {
    background: var(--olive);
}

.gift-card.custom-gift {
    border-color: var(--dark-olive);
    background: linear-gradient(135deg, var(--soft-cream), var(--cream));
}

.gift-card.custom-gift:hover {
    border-color: var(--olive);
}

.gift-card.custom-gift .gift-image-placeholder {
    background: linear-gradient(135deg, var(--dark-olive), var(--olive));
}

.gift-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
}

.gift-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.gift-content {
    padding: 20px;
}

.gift-name {
    font-family: var(--font-sans);
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.gift-description {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.gift-price {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 15px;
}

.gift-status {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.gift-status.purchased {
    background: var(--medium-gray);
}

/* Gift Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.closing {
    animation: fadeOut 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal.closing .modal-content {
    animation: modalSlideOut 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--medium-gray);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--burgundy);
}

#modal-body h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

#modal-body p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

#modal-body .modal-price {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--burgundy);
    margin: 20px 0;
    font-weight: 600;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.payment-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-btn.pix {
    background: var(--gold);
    color: var(--white);
}

.payment-btn.card {
    background: var(--burgundy);
    color: var(--white);
}

/* PIX Modal Specific Styles */
#pix-body {
    text-align: center;
}

#pix-body h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

#pix-body p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

#pix-body .pix-amount {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--burgundy);
    font-weight: 600;
    margin: 15px 0;
}

.pix-container {
    background: linear-gradient(135deg, var(--cream), var(--white));
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px 20px;
    margin: 30px auto;
    max-width: 400px;
}

.pix-qr-code {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pix-key-section {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.pix-key-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--medium-gray);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.pix-key-display {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--dark-gray);
    word-break: break-all;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 15px;
}

.copy-button {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.copy-button:hover {
    background: var(--dark-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 127, 91, 0.3);
}

.copy-button.copied {
    background: #10b981;
}

.pix-instructions {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 25px;
    padding: 15px;
    background: var(--cream);
    border-radius: 8px;
    line-height: 1.6;
}

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

.footer {
    background: linear-gradient(135deg, var(--dark-olive), var(--charcoal));
    color: var(--cream);
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-ornament {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-names {
    font-family: var(--font-cursive);
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-date {
    font-family: var(--font-sans);
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.footer-cross {
    font-size: 24px;
    color: var(--gold);
    margin-top: 20px;
}

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

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

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

@media (max-width: 768px) {
    .nav-list {
        gap: 15px;
    }

    .nav-list a {
        font-size: 12px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .timeline::before {
        left: 95px;
    }

    .timeline-time {
        font-size: 18px;
        min-width: 70px;
    }

    .timeline-time::after {
        right: -38px;
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .timeline-content {
        padding-left: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

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

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

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }

    /* PIX Modal Mobile Styles */
    .pix-container {
        padding: 20px 15px;
    }

    .pix-qr-code {
        max-width: 240px;
    }

    #pix-body h3 {
        font-size: 24px;
    }

    .pix-key-display {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 15px;
    }

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

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