/* body {
    background-color: #2a2218;
} */


/* @font-face {
    font-family: 'Mayan';
    src: url('fonts/Mayan.ttf');
} */


/* :root {
    --colorchampagn: #e6d3ac;
    --bg: #2a2218;
    --bg2: #372c1e;
    --ink: #f0e2c4;
    --colorgolden: #b8945a;
} */


/* light */


/* :root {
    --colorgolden: #b8945a;
    --bg: #f7efe1;
    --bg2: #efe2c9;
    --card: #fffaf0;
    --ink: #5a4630;
    --gold: #b8945a;
    --champ: #e6d3ac;
    --petal: #e9d5ae;
    --shadow: rgba(120, 90, 40, .18)
} */


/* dark */

:root {
    --colorgolden: #b8945a;
    --colorchampagn: #e6d3ac;
    --bg: #2a2218;
    --bg2: #372c1e;
    --card: #3f3323;
    --ink: #f0e2c4;
    --gold: #d2ad72;
    --champ: #7a6440;
    --petal: #a68b58;
    --shadow: rgba(0, 0, 0, .4)
}

body {
    background: var(--bg);
    color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gold);
}

p {
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 22px;
}

#petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden
}

.petal {
    position: absolute;
    top: -30px;
    width: 12px;
    height: 16px;
    background: var(--petal);
    border-radius: 80% 0 80% 0;
    opacity: .7;
    animation: fall linear infinite
}

.preloader {
    background: radial-gradient(ellipse at top, var(--bg2), var(--bg)) !important;
}

@keyframes fall {
    to {
        transform: translate(60px, 110vh) rotate(540deg)
    }
}


/* body {
    background: radial-gradient(ellipse at top, var(--bg2), var(--bg));
} */


/* .static-hero-s2 {
    background: transparent !important;
} */


/* ====================================================================
   Section Home
==================================================================== */

.hero-100vh {
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.hero-100vh .centrado-absoluto {
    padding: 0 !important;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.static-hero-s2 .left-shape .left-shape-1 svg path,
.static-hero-s2 .right-shapes .right-shape-1 svg path {
    fill: var(--colorchampagn);
}

.static-hero-s2 .left-shape .left-shape-2 svg path,
.static-hero-s2 .right-shapes .right-shape-2 svg path {
    fill: var(--gold) !important;
}

.hero-100vh .shape-1 {
    margin-bottom: 15px;
}

.hero-100vh .slide-title h2 {
    font-size: 110px !important;
    margin: 10px 0 !important;
    color: var(--gold);
}

.hero-100vh .slide-text p {
    font-size: 30px !important;
    margin-bottom: 25px !important;
    color: var(--ink);
}

#reloj-boda {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

#reloj-boda .box {
    text-align: center;
    min-width: 80px;
}

#reloj-boda .time {
    font-family: "Sail", cursive;
    font-size: 65px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

#reloj-boda span {
    color: var(--ink);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.anillos-hero {
    max-width: 280px;
    margin-top: 10px;
    filter: drop-shadow(0px 15px 25px var(--shadow));
}

.blob-izq {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
}

.blob-der {
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
}

.flor-izq {
    position: absolute;
    left: 10%;
    top: 45%;
    transform: translateY(-50%) scaleX(-1);
    max-width: 130px;
    opacity: 0.9;
}

.flor-der {
    position: absolute;
    right: 10%;
    top: 55%;
    transform: translateY(-50%);
    max-width: 130px;
    opacity: 0.9;
}

.wpo-wedding-date {
    position: relative;
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

#home {
    background: radial-gradient(ellipse at top, var(--bg2), var(--bg)) !important;
}

#home,
#couple {
    position: relative;
}

.icon-leaves-23 {
    position: absolute;
    top: 0;
    left: -220px;
    z-index: 9;
}

.icon-leaves-24 {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: 9;
}

.coupleSharpLeft {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 250px;
}

.coupleSharpRight {
    position: absolute;
    right: 0;
    top: 100px;
    width: 250px;
}

.bounce-x {
    -webkit-animation: bounce-x 10s infinite linear;
    animation: bounce-x 10s infinite linear;
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}


/* ====================================================================
   Section End Home
==================================================================== */


/* ====================================================================
   Section Couple
==================================================================== */

.wpo-couple-section-s2 .couple-item-wrap:before {
    display: none;
}

.wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-bg .shape-bg path,
.wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-r-item .couple-text-bg .shape-bg path {
    fill: var(--card);
    stroke: var(--champ);
    stroke-width: 2px;
    filter: drop-shadow(0 8px 22px var(--shadow));
}

.shape-bg-mobile {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 520px;
    height: auto;
    z-index: -1;
}

.shape-bg-mobile path {
    fill: var(--card);
    stroke: var(--champ);
    stroke-width: 2px;
    filter: drop-shadow(0 8px 22px var(--shadow));
}


/* ====================================================================
   Section End Couple
==================================================================== */


/* ====================================================================
   Secction Parents
==================================================================== */

#parents {
    padding-bottom: 20px;
}

#parents h2 {
    font-size: 40px;
    letter-spacing: 2px;
}

.team-section-three .team-block-outer {
    margin-bottom: 100px;
}

.team-section-three .team-info-box .designation {
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 10px;
}


/* Texto introductorio */

.team-section-three .team-info-box .text {
    font-size: 22px;
    line-height: 1.8;
}


/* --------------------------------------
   Imágenes en forma de Arco (Novios)
--------------------------------------- */

.team-section-three .arch-image {
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 0 0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    display: inline-block;
    border: 2px solid var(--gold);
}

.team-section-three .arch-image img {
    width: 100%;
    max-width: 350px;
    /* Controlamos que no se haga gigante */
    display: block;
}


/* --------------------------------------
   Imágenes Circulares (Papás)
--------------------------------------- */

.team-block-three .inner-box {
    text-align: center;
    margin-top: 20px;
}

.team-block-three .image-box {
    position: relative;
    display: inline-block;
    padding-top: 15px;
    margin-bottom: 15px;
}


/* La foto circular */

.team-block-three .image-box .image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 20px 20px 35px;
}

.team-block-three .image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-block-three .inner-box:hover .image-box .image img {
    transform: scale(1.05);
    /* Efecto hover elegante */
}


/* El marco de hojas de los papás */

.team-block-three .image-box .team3-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    background-image: url('../images/icons/team3-frame.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}


/* Nombres de los papás */

.team-block-three .info-box .name {
    font-family: "Sail", cursive;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
}

.team-block-three .info-box .designation {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    color: var(--ink);
    font-style: italic;
}


/* --------------------------------------
   Hojas Decorativas Grandes
--------------------------------------- */

.icon-leaves-8 {
    position: absolute;
    top: -20px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: url('../images/icons/icon-leaves-8.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 3;
}

.invert-leaf {
    left: auto;
    right: -50px;
    bottom: -20px;
    top: auto;
    transform: scaleX(-1);
}

#parents {
    position: relative;
}

#parents .icon-flower-25 {
    position: absolute;
    bottom: 280px;
    right: -170px;
}

.icon-flower-25 {
    width: 896px;
    height: 583px;
    background-image: url(../images/icons/icon-flower-25.png);
}


/* ====================================================================
   Secction End Parents
==================================================================== */


/* ====================================================================
   Secction Events
==================================================================== */

.card {
    padding: 15px;
    background-color: var(--card);
    border: 2px solid var(--champ);
    border-radius: 18px;
    box-shadow: 0 8px 22px var(--shadow);
}

.card .card-img-top {
    width: 100px;
}

.card h5 {
    font-size: 35px;
    color: var(--ink);
}

.card h3 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

.card h3,
.hour {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--gold);
    font-style: italic;
}

.btnWedding {
    display: inline-block;
    padding: .75rem 2rem;
    border: 1.5px solid var(--gold);
    border-radius: 40px;
    background: transparent;
    color: var(--ink);
    font: 600 1.05rem 'Cormorant Garamond', Georgia, serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.btnWedding:hover,
.btnWedding:active,
.btnWedding:focus,
.btnWedding:visited {
    background-color: var(--gold) !important;
    color: #fffaf0 !important;
    transform: translateY(-2px) !important;
}


/* ====================================================================
   Secction End Events
==================================================================== */


/* ====================================================================
   Secction Bye
==================================================================== */

#bye img {
    width: 100px;
}

#bye h2 {
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#bye h3 {
    font-size: 60px !important;
}


/* ====================================================================
   Secction End Bye
==================================================================== */


/* ====================================================================
   Secction Footer
==================================================================== */

footer {
    background-color: var(--champ);
}

footer a {
    color: var(--gold);
}

footer a:hover,
footer a:active {
    color: var(--gold);
}

footer h3 {
    font-size: 2.4rem;
    color: var(--gold);
    margin-top: 1.2rem
}

.namesDesktop {
    display: block;
}

.namesMobile {
    display: none;
}

.namesMobile span {
    color: var(--ink) !important;
}


/* ====================================================================
   Secction End Footer
==================================================================== */

@media (max-width: 991px) {
    .flor-izq,
    .flor-der {
        display: none;
        /* Ocultamos las ramitas en tabletas/móviles para no saturar */
    }
    .icon-leaves-8 {
        display: none;
        /* Ocultamos las hojas grandes en móviles para evitar saturación */
    }
    .team-section-three .team-info-box .name {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .shape-1 {
        padding-bottom: 0;
    }
    .shape-1 img {
        width: 100px;
    }
    .icon-leaves-23 {
        left: -130px;
        width: 220px !important;
    }
    .icon-leaves-24 {
        width: 220px;
    }
    .hero-100vh .slide-text p {
        font-size: 22px !important;
    }
    .hero-100vh .slide-title h2 {
        font-size: 60px !important;
    }
    .anillos-hero {
        max-width: 180px;
    }
    #reloj-boda {
        gap: 0px;
    }
    #reloj-boda .time {
        font-size: 40px;
    }
    #reloj-boda span {
        font-size: 14px;
    }
    /* .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-bg .shape-bg {
        display: block;
    }*/
    .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-bg .couple-text {
        background: transparent;
    }
    .coupleSharpRight {
        top: 300px;
        width: 110px;
    }
    .coupleSharpLeft {
        bottom: -70px;
        width: 90px;
    }
    /* .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-l-item {
        top: -350px;
        left: -6%;
    } */
}

@media (max-width: 650px) {
    .shape-bg-mobile {
        display: block;
    }
    .couple-text {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 575px) {
    .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-bg .couple-text {
        background: transparent;
    }
    /* .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-l-item {
        top: -350px;
        left: -15%;
    } */
}

@media (max-width: 480px) {
    .card {
        padding: 0;
    }
    .card h5 {
        font-size: 30px;
    }
    .namesDesktop {
        display: none;
    }
    .namesMobile {
        display: block;
    }
}

@media (max-width: 430px) {
    .card h3 {
        font-size: 16px;
    }
    .card h5 {
        font-size: 26px;
    }
}


/* @media (max-width: 480px) {
    .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-l-item {
        top: -350px;
        left: -5%;
    }
    .wpo-couple-section-s2 .couple-item-wrap .couple-text-wrap .couple-text-bg .shape-bg {
        width: 400px;
        height: 300px;
    }
} */