/* =========================================
   VARIABLES & THEME SETUP
   Deep Midnight Blue: #0b132b
   Forest Green (dark): #1c2e26
   Apple Red: #d90429
   Shimmering Gold: #d4af37
   Light Gold: #f3e5ab
   Snow White: #f8f9fa
   ========================================= */

:root {
    --primal-blue: #0b132b;
    --night-blue: #1c2541;
    --apple-red: #d90429;
    --dark-red: #8d0801;
    --royal-gold: #d4af37;
    --light-gold: #f3e5ab;
    --snow-white: #f8f9fa;
    --forest-green: #11261d;

    --font-heading: 'Playfair Display', serif;
    --font-cursive: 'Great Vibes', cursive;
    --font-body: 'Lora', serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primal-blue);
    color: var(--snow-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-family: var(--font-cursive);
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
    color: var(--royal-gold);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.text-light {
    color: var(--snow-white);
}

.glow-text {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Reveal Classes for Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   HEADER & NAV
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--royal-gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--snow-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--apple-red);
    transition: var(--transition);
}

nav a:hover {
    color: var(--royal-gold);
}

nav a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0;
    z-index: 10;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('imagens/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(11, 19, 43, 0.6) 0%,
            rgba(28, 46, 38, 0.6) 50%,
            rgba(11, 19, 43, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-cursive);
    font-size: 8rem;
    font-weight: 400;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero .subtitle {
    font-size: 2.5rem;
    color: var(--snow-white);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.hero-date {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--light-gold);
    border-top: 1px solid var(--royal-gold);
    border-bottom: 1px solid var(--royal-gold);
    display: inline-block;
    padding: 10px 30px;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(5px);
    width: 90px;
    height: 90px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.countdown-item span:first-child {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--royal-gold);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--snow-white);
    letter-spacing: 1px;
}

/* Scroll Down Icon */
.scroll-down {
    color: var(--snow-white);
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    display: inline-block;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--royal-gold);
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background-color: var(--primal-blue);
    background-image: radial-gradient(circle at center, rgba(28, 46, 38, 0.3) 0%, transparent 70%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(248, 249, 250, 0.95);
    text-align: left;
    font-style: italic;
}

.about-text p:first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding-top: 8px;
    padding-right: 6px;
    color: var(--royal-gold);
}

/* Magic Mirror Style Frame */
.about-image-frame {
    flex: 1.2;
    aspect-ratio: 4 / 3;
    height: auto;
    background-image: url('imagens/fairytale_princess.png');
    /* placeholder for generated img */
    background-size: cover;
    background-position: center;
    border-radius: 150px 150px 10px 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mirror-border {
    border: 8px solid var(--royal-gold);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(212, 175, 55, 0.5);
}

.mirror-border::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 155px 155px 15px 15px;
    pointer-events: none;
}

.apple-icon {
    font-size: 5rem;
    color: var(--apple-red);
    filter: drop-shadow(0 0 10px rgba(217, 4, 41, 0.6));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    background-color: var(--primal-blue);
    background-image: url('imagens/forest-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.85);
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.mirror-border-small {
    border: 4px solid var(--royal-gold);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(212, 175, 55, 0.3);
}

.mirror-border-small::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.9), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--royal-gold);
    transform: translateY(20px);
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* =========================================
   DETAILS SECTION
   ========================================= */
.details-section {
    background-color: var(--forest-green);
    position: relative;
}

.details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.details-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Glassmorphism setup */
.glass-card {
    background: rgba(11, 19, 43, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--royal-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(11, 19, 43, 0.6);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--snow-white);
    letter-spacing: 1px;
}

.glass-card p {
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 0.5rem;
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--royal-gold);
    padding-bottom: 2px;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--apple-red);
    border-color: var(--apple-red);
}

/* =========================================
   RSVP SECTION
   ========================================= */
.rsvp-section {
    background-color: var(--primal-blue);
    background-image: url('imagens/apples-bg.jpg');
    /* placeholder for generated img */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.85);
    /* Deep dark overlay */
}

.rsvp-box {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(28, 46, 38, 0.8);
    /* Dark green tint */
    padding: 4rem 3rem;
    border-radius: 5px;
    text-align: center;
}

.mirror-frame-alt {
    border: 2px solid var(--royal-gold);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.rsvp-box h2 {
    font-size: 2.5rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.rsvp-box p {
    margin-bottom: 2rem;
    color: rgba(248, 249, 250, 0.8);
}

.rsvp-form .form-group {
    margin-bottom: 1.5rem;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--snow-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(11, 19, 43, 0.8);
}

.gold-btn {
    background: linear-gradient(135deg, #d4af37, #b28a25);
    color: var(--primal-blue);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.gold-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c355, #c7a034);
}

.gold-btn:hover::after {
    left: 150%;
}

.w-100 {
    width: 100%;
}

.success-msg {
    color: #4CAF50 !important;
    font-weight: 600;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 4px;
}

.hidden {
    display: none !important;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: var(--primal-blue);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: rgba(248, 249, 250, 0.6);
}

.small-text {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--apple-red);
}

/* =========================================
   PARTICLES / SNOW EFFECT
   ========================================= */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
}

.snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) translateX(20px) scale(0.5);
        opacity: 0;
    }
}

/* =========================================
   INTRO OVERLAY MAGICAL START
   ========================================= */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b132b;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out, visibility 1s;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.mirror-frame {
    text-align: center;
    padding: 4rem;
    border: 5px solid var(--royal-gold);
    border-radius: 200px 200px 10px 10px;
    background: rgba(28, 46, 38, 0.5);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.mirror-frame h2 {
    font-family: var(--font-cursive);
    font-weight: 400;
    color: var(--royal-gold);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.mirror-frame p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--royal-gold);
    cursor: pointer;
    z-index: 1001;
}

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

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

    .about-content {
        flex-direction: column;
    }

    .about-image-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(11, 19, 43, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2.5rem;
        display: flex;
    }

    nav a {
        font-size: 1.2rem;
    }

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

    .countdown-container {
        gap: 0.8rem;
    }

    .countdown-item {
        width: 65px;
        height: 65px;
    }

    .countdown-item span:first-child {
        font-size: 1.3rem;
    }

    .countdown-item .label {
        font-size: 0.7rem;
    }

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

    .mirror-frame {
        padding: 2rem;
    }

    .details-cards {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }

    .rsvp-box {
        padding: 2.5rem 1.5rem;
    }
}

/* Smaller devices like iPhone SE */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

/* =========================================
   GALLERY MODAL (LIGHTBOX)
   ========================================= */
.gallery-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 19, 43, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 4px solid var(--royal-gold);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.3);
    animation: zoom 0.4s;
}

#modal-caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    text-align: center;
    color: var(--light-gold);
    font-size: 1.2rem;
    font-style: italic;
    font-family: var(--font-body);
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--royal-gold);
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition);
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--apple-red);
    text-decoration: none;
}

/* =========================================
   MUSIC TOGGLE BUTTON
   ========================================= */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(11, 19, 43, 0.8);
    border: 2px solid var(--royal-gold);
    color: var(--royal-gold);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.music-toggle:hover {
    transform: scale(1.1);
    background: var(--royal-gold);
    color: var(--primal-blue);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.music-toggle.playing {
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}