@import url(resorcess/fonts/Reichi.ttf);
@import url(resorcess/fonts/Derona-BF682b79f6112cf.ttf);

body {
    box-sizing: border-box;
}

:root {
    --royal-blue: #1e3a5f;
    --soft-gold: #d4af37;
    --cream-white: #fefefe;
    --light-blue: #e8f0f8;
    --deep-gold: #b8941f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.font-serif-elegant {
    font-family: 'Derona', serif;
}

.font-sans-elegant {
    font-family: 'Montserrat', sans-serif;
}

.effect{
    backdrop-filter: blur(10px);
}

.hero-gradient {
    background: linear-gradient(135deg, #0d3e7e, #6685aa, #fefefe);
}

.gold-shimmer {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 1s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.card-premium {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08), 0 2px 10px rgba(212, 175, 55, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12), 0 5px 20px rgba(212, 175, 55, 0.1);
}

.gold-border-bottom {
    position: relative;
}

.gold-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin: 0 auto;
    width: 80%;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8f9fc, #ffffff);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.08);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 50%, #d4af37 100%);
    color: #1e3a5f;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: transparent;
    color: #1e3a5f;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #1e3a5f;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: #1e3a5f;
    color: #ffffff;
}

.logo-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(30, 58, 95, 0.15), 0 0 0 4px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@view-transition {
    navigation: auto;
}