@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #65B4E9;
    border-radius: 10px;
    border: 3px solid #f1f5f9;
}

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

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;

}

html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Header & Navigation */
.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-scrolled {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 !important;
}

/* Animations & Effects */
.clip-path-slant {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(101, 180, 233, 0.15);
}

/* Form Styles */
.contact-input {
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #65B4E9 !important;
    box-shadow: 0 0 0 4px rgba(101, 180, 233, 0.1);
    outline: none;
    background: white !important;
}

/* Swiper Prev/Next Override (Optional but good for premium feel) */
.swiper-button-next,
.swiper-button-prev {
    color: #65B4E9 !important;
}


.swiper-pagination-bullet-active {
    background: #65B4E9 !important;
}

/* Page Header Generic Styles */
.page-header {
    background-size: cover !important;
    background-position: center !important;
}

/* Page Specific Header Backgrounds */
.windows-header {
    background: linear-gradient(rgba(101, 180, 233, 0.6), rgba(0, 0, 0, 0.8)), url('../images/header-windows.webp') !important;
}

.deck-header {
    background: linear-gradient(rgba(101, 180, 233, 0.6), rgba(0, 0, 0, 0.8)), url('../images/header-decks.webp') !important;
}

.gallery-header {
    background: linear-gradient(rgba(101, 180, 233, 0.6), rgba(0, 0, 0, 0.8)), url('../images/header-gallery.webp') !important;
}

.contact-header {
    background: linear-gradient(rgba(101, 180, 233, 0.6), rgba(0, 0, 0, 0.8)), url('../images/header-contact.webp') !important;
}

/* Gallery Hover Styles */
.gallery-item:hover .overlay {
    opacity: 1 !important;
}

.swiper-pagination-bullet {
    background: #65B4E9 !important;
}