/* Custom styles */
body {
    /*background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');*/
    background-image: url('background_.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.7);
    z-index: -1;
}

/* Text contrast improvements */
.bg-white\/10 {
    background-color: rgba(10, 17, 40, 0.6) !important;
    backdrop-filter: blur(4px);
}

.bg-white\/5 {
    background-color: rgba(10, 17, 40, 0.6) !important;
    backdrop-filter: blur(4px);
}

/* Card styles */
.bg-white\/10.p-6 {
    background-color: rgba(10, 17, 40, 0.6) !important;
    border: 1px solid rgba(251, 192, 45, 0.2);
    backdrop-filter: blur(4px);
}

/* Text colors */
.text-white {
    color: #FFFFFF !important;
}

.text-gold {
    color: #FBC02D !important;
}

/* Form elements */
input, textarea {
    background-color: rgba(10, 17, 40, 0.6) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(251, 192, 45, 0.3) !important;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A1128;
}

::-webkit-scrollbar-thumb {
    background: #FBC02D;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FBC02D;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 17, 40, 0.9);
    z-index: 40;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.mobile-menu.active {
    display: block;
}

/* Form focus states */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px #FBC02D;
    outline: none;
}

/* Section transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Additional contrast improvements */
p, li, span {
    color: #FFFFFF;
}

a {
    color: #FBC02D;
}

a:hover {
    color: #FFFFFF;
}

/* Card hover effects */
.bg-white\/10:hover {
    background-color: rgba(10, 17, 40, 0.7) !important;
    border-color: rgba(251, 192, 45, 0.4) !important;
} 

/* Gallery Swiper Styles */
.gallery-swiper {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-button-next,
.swiper-button-prev {
    color: #FBC02D !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
}

.swiper-pagination-bullet {
    background: #FBC02D !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .gallery-swiper {
        padding: 10px 0;
    }
} 