/* Google Fonts are now loaded in HTML for better performance */

:root {
    --primary: #F97316; /* Orange-500 */
    --primary-dark: #EA580C; /* Orange-600 */
    --secondary: #1F2937; /* Gray-800 */
    --text-main: #374151; /* Gray-700 */
    --bg-light: #F9FAFB; /* Gray-50 */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: white;
    font-display: swap;
}

h1, h2, h3, .font-heading {
    font-family: 'Outfit', sans-serif;
}

.text-orange-accent {
    color: var(--primary);
}

.bg-orange-accent {
    background-color: var(--primary);
}

.hover\:bg-orange-dark:hover {
    background-color: var(--primary-dark);
}

/* Specific spacing and styles */
.hero-overlay {
    background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.7));
}

.shadow-premium {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 4px 10px -2px rgba(0, 0, 0, 0.05);
}

/* Sticky mobile button */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 0.75rem;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Realisations Swiper Styles */
.iterations-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #D1D5DB !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border-radius: 99px !important;
}

.iterations-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 28px !important; /* Pill shape for active to emphasize 'roundness' and motion */
}



.iterations-slider .swiper-button-prev,
.iterations-slider .swiper-button-next {
    transition: all 0.3s ease;
    opacity: 0.85;
    display: none !important; /* Hidden by default (mobile) */
}

@media (min-width: 1024px) {
    .iterations-slider .swiper-button-prev,
    .iterations-slider .swiper-button-next {
        display: flex !important; /* Shown on desktop */
        align-items: center !important;
        justify-content: center !important;
    }
}


.iterations-slider .swiper-button-prev::after,
.iterations-slider .swiper-button-next::after {
    font-family: Arial, sans-serif !important; /* Resetting from Swiper icon font */
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    display: flex !important;
}

.iterations-slider .swiper-button-prev::after {
    content: '<' !important;
    margin-right: 2px;
}

.iterations-slider .swiper-button-next::after {
    content: '>' !important;
    margin-left: 2px;
}

.iterations-slider .swiper-button-prev:hover,
.iterations-slider .swiper-button-next:hover {
    background-color: var(--primary) !important;
    color: white !important;
    opacity: 1;
}




