@charset "UTF-8";
/*!
* Start Bootstrap - The Big Picture v5.0.6 (https://startbootstrap.com/template/the-big-picture)
* Copyright 2013-2023 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-the-big-picture/blob/master/LICENSE)
*/

/* Tailwind styles will be properly initialized in our HTML */

/* Custom Animations */
@keyframes dissolve {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scaleImage {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-scale {
    animation: scaleImage 15s ease-in-out infinite;
}

.animate-dissolve {
    animation: dissolve 0.5s ease-in-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

.price-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

/* Carousel navigation */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ffffff;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-arrow-prev {
    left: 15px;
}

.carousel-arrow-next {
    right: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Custom Tailwind Extensions */
.gold-gradient {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
}

.silver-gradient {
    background: linear-gradient(to right, #757F9A, #D7DDE8, #757F9A);
    background-size: 200% auto;
}

.hover-gradient:hover {
    background-position: right center;
    transition: 0.5s;
}

/* Page Transitions */
.page-transition {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Custom Styles */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product Cards */
.product-card {
    perspective: 1000px;
    transition: transform 0.5s;
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.product-card-front, .product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.product-card-back {
    transform: rotateY(180deg);
}

/* News Feed Styling */
.news-item {
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-date {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Map container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Fix HTML structure issues */
#silver-card .p-4 {
    margin-bottom: 0;
}

.feature-item svg {
    display: inline-block;
}
