@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500&family=Pinyon+Script&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
}

.font-script {
    font-family: 'Pinyon Script', cursive;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Custom Color Utilities */
.text-olive-light {
    color: #c5c6a4;
}

.text-olive-dark {
    color: #83826d;
}

.text-burgundy {
    color: #612733;
}

.text-dusty-rose {
    color: #e0b4b5;
}

.bg-olive-light {
    background-color: #c5c6a4;
}

.bg-olive-dark {
    background-color: #83826d;
}

.bg-burgundy {
    background-color: #612733;
}

.bg-dusty-rose {
    background-color: #e0b4b5;
}

.border-olive-light {
    border-color: #c5c6a4;
}

.border-olive-dark {
    border-color: #83826d;
}

.border-burgundy {
    border-color: #612733;
}

.border-dusty-rose {
    border-color: #e0b4b5;
}

.text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.fade-out {
    opacity: 0;
}

.slide-up {
    transform: translateY(-100%);
}

.slide-down {
    transform: translateY(100%);
}

.fade-away {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#sello {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: auto;
    z-index: 40;
    transition: opacity 0.8s ease;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

.sello-fade-out {
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

form {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Bloquear scroll */
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}


/* Custom styles for better UI */
.confirmacion-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-premium {
    background: #78716c;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(120, 113, 108, 0.39);
    transition: all 0.2s ease;
}

.btn-premium:hover {
    background: #57534e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(120, 113, 108, 0.23);
}

/* GPU Accelerated Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transform: translateZ(0);
    /* Force GPU acceleration */
}

/* Fallback for mobile devices to ensure smooth scrolling */
@media (max-width: 1023px) {
    .parallax-bg {
        background-attachment: scroll !important;
    }
}

.hero-reveal {
    transition: opacity 2.5s ease-out;
}