/* ========================================
   WEDDING INVITATION - STYLES
   Richard & Andrea
======================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #d4af7a;
    --gold-dark: #b8884a;
    --gold-light: #e8d5b7;
    --cream: #faf8f3;
    --cream-dark: #f5f0e8;
    --text-dark: #3d3d3d;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(212, 175, 122, 0.15);
    --shadow-strong: rgba(212, 175, 122, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

.elegant-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.script-font {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('fotos/foto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(212, 175, 122, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-names {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-names .ampersand {
    font-size: 5rem;
    margin: 0 20px;
    color: var(--gold-light);
}

.hero-date {
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    font-style: italic;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    margin-top: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 300;
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.decorative-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.section-title {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin: 0;
    position: relative;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 100px 20px;
    background: var(--cream);
    position: relative;
    z-index: 10;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 122, 0.1);
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.card-decorative-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold-light);
}

.card-decorative-corner.top-left {
    top: 15px;
    left: 15px;
    border-top: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
}

.card-decorative-corner.top-right {
    top: 15px;
    right: 15px;
    border-top: 2px solid var(--gold-light);
    border-right: 2px solid var(--gold-light);
}

.card-decorative-corner.bottom-left {
    bottom: 15px;
    left: 15px;
    border-bottom: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
}

.card-decorative-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-bottom: 2px solid var(--gold-light);
    border-right: 2px solid var(--gold-light);
}

.info-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px var(--shadow-strong);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 20px auto;
}

.info-location {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 15px 0;
}

.info-time,
.info-address {
    color: var(--text-light);
    margin: 10px 0;
    font-size: 1rem;
}

.info-time i {
    color: var(--gold-primary);
    margin-right: 8px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-strong);
}

/* Dress Code Specific Styles */
.dress-code-info {
    margin-top: 20px;
}

.dress-label {
    font-weight: 600;
    color: var(--gold-primary);
    margin: 20px 0 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prohibited-colors {
    margin-bottom: 25px;
}

.color-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.color-tag {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.color-tag.prohibited {
    background: #ffe5e5;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.color-sample {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-sample:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.dress-instructions {
    margin-top: 25px;
    padding: 20px;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
}

.dress-instructions p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

.dress-instructions i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* ===== BIBLE VERSE SECTION ===== */
.verse-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    z-index: 10;
}

.verse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.verse-text {
    padding: 40px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0.4;
}

.verse-text blockquote {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    margin: 0;
    font-weight: 400;
}

.verse-reference {
    margin-top: 30px;
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.verse-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
    border: 8px solid var(--white);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    z-index: -1;
    border-radius: 15px;
}

.verse-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover .verse-photo {
    transform: scale(1.05);
}

/* ===== GIFTS SECTION ===== */
.gifts-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.gifts-content {
    max-width: 800px;
    margin: 0 auto;
}

.gift-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.gifts-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 8px 30px var(--shadow);
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    z-index: 10000;
    animation: modalSlideDown 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--gold-primary);
    background: var(--cream);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-align: center;
}

.modal-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 20px auto 40px;
}

.qr-section {
    text-align: center;
    margin-bottom: 40px;
}

.qr-code {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--shadow-strong);
    padding: 10px;
    border: 3px solid var(--gold-light);
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.qr-code p {
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.qr-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 20px;
}

.account-info {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold-light);
}

.account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
}

.account-item:last-child {
    border-bottom: none;
}

.account-label {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.95rem;
}

.account-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    text-align: center;
    position: relative;
    z-index: 10;
}

.rsvp-content {
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.rsvp-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.rsvp-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    margin-bottom: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.gallery-slider {
    max-width: 1100px;
    margin: 60px auto 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: 100%;
    height: 650px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold-dark);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.gallery-nav:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 30px;
}

.gallery-nav.next {
    right: 30px;
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-indicator.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.6);
}

.gallery-indicator:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.15);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-names {
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.footer-names .ampersand {
    font-size: 3.5rem;
    margin: 0 15px;
    opacity: 0.8;
}

.footer-date {
    font-size: 1.5rem;
    letter-spacing: 6px;
    margin-bottom: 30px;
    font-style: italic;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 30px auto;
}

.footer-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-hearts {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .verse-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .verse-photo {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-names {
        font-size: 3.5rem;
    }
    
    .hero-names .ampersand {
        font-size: 3rem;
        margin: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }
    
    .hero-date {
        font-size: 1rem;
    }
    
    .countdown-container {
        padding: 25px 15px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .decorative-line {
        width: 50px;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .verse-text blockquote {
        font-size: 1.5rem;
    }
    
    .verse-photo {
        height: 400px;
    }
    
    .gallery-item {
        height: 450px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-nav.prev {
        left: 15px;
    }
    
    .gallery-nav.next {
        right: 15px;
    }
    
    .gallery-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .gallery-indicator {
        width: 10px;
        height: 10px;
    }
    
    .footer-names {
        font-size: 2.5rem;
    }
    
    .footer-names .ampersand {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 35px 25px;
        margin: 10% auto;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-names {
        font-size: 2.8rem;
    }
    
    .hero-names .ampersand {
        font-size: 2.2rem;
        margin: 0 8px;
    }
    
    .countdown-container {
        padding: 20px 10px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        margin-top: 5px;
    }
    
    .section-header {
        gap: 15px;
    }
    
    .info-card {
        padding: 35px 25px;
    }
    
    .gallery-item {
        height: 350px;
    }
    
    .gallery-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .gallery-indicator {
        width: 8px;
        height: 8px;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
}