:root {
    --color-gold: #FFD700;
    --color-bordo: #800020;
}

.text-gold {
    color: var(--color-gold);
}

.bg-gold {
    background-color: var(--color-gold);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Model Card Styles */
.model-card {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Gallery Styles */
.swiper {
    width: 100%;
    height: 800px;
    margin-bottom: 2rem;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--color-gold);
}

.swiper-pagination-bullet-active {
    background: var(--color-gold);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-bordo);
}

/* Responsive Image Sizes */
@media (max-width: 1024px) {
    .swiper {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .model-card img {
        height: 300px;
    }
    
    .swiper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .model-card img {
        height: 250px;
    }
    
    .swiper {
        height: 300px;
    }
} 