/* 
   KASIRGA SPOT - ULTIMATE PREMIUM THEME
   Color Palette:
   - Primary: #FFD700 (Gold/Yellow)
   - Background: #000000 (Pure Black)
   - Card/Section Bg: #111111 (Dark Gray)
   - Text: #FFFFFF (White)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --ks-gold: #FFD700;
    --ks-black: #000000;
    --ks-dark: #111111;
    --ks-gray: #1a1a1a;
    --ks-text: #ffffff;
    --ks-text-muted: #b0b0b0;
}

body {
    background-color: var(--ks-black) !important;
    color: var(--ks-text) !important;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ks-text);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- NAVBAR --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ks-gold) !important;
    letter-spacing: 2px;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--ks-text) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--ks-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-link:hover, .nav-link.active {
    color: var(--ks-gold) !important;
}

.btn-contact {
    background-color: var(--ks-gold);
    color: var(--ks-black) !important;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 50px; /* Rounded pill for contrast */
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-contact:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(0,0,0,0.8);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--ks-text);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- BUTTONS --- */
.btn-gold {
    background-color: transparent;
    border: 2px solid var(--ks-gold);
    color: var(--ks-gold);
    font-weight: 700;
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--ks-gold);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-gold:hover {
    color: var(--ks-black);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* --- SECTIONS --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background-color: var(--ks-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- GALLERY CARD --- */
.gallery-card {
    background-color: var(--ks-dark);
    border: 1px solid #222;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    border-color: var(--ks-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--ks-dark), #000);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--ks-text);
}

.card-category {
    color: var(--ks-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

/* --- FILTERS --- */
.filter-btn {
    background-color: transparent;
    border: 1px solid #333;
    color: var(--ks-text-muted);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 0 5px 10px;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--ks-gold);
    color: var(--ks-black);
    border-color: var(--ks-gold);
    font-weight: 600;
}

/* --- DETAIL PAGE --- */
.breadcrumb-item a {
    color: var(--ks-text-muted);
}
.breadcrumb-item.active {
    color: var(--ks-gold);
}

.detail-img-main {
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.detail-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #333;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s;
}

.detail-thumb:hover, .detail-thumb.active {
    opacity: 1;
    border-color: var(--ks-gold);
}

/* --- FLOATING ACTION BUTTONS --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: var(--ks-gold);
    color: var(--ks-black);
}

.fab-btn:hover {
    transform: scale(1.1);
    color: inherit;
}

/* --- FOOTER --- */
footer {
    background-color: #080808;
    border-top: 1px solid #222;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--ks-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--ks-gold);
    color: var(--ks-black);
}

/* --- UTILITIES --- */
.bg-gold {
    background-color: var(--ks-gold) !important;
    color: var(--ks-black) !important;
}

.text-gold {
    color: var(--ks-gold) !important;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .navbar-collapse {
        background-color: rgba(0,0,0,0.98);
        padding: 20px;
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* --- URGENT BUTTON --- */
.btn-urgent {
    background: linear-gradient(45deg, #fff200, #fff200);
    color: #ffffff !important;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 25px rgba(255, 221, 0, 0.652);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.btn-urgent:hover {
    background: #ffffff;
    color: #fff200 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
    border-color: #fff200;
}

.pulse {
    animation: pulse-animation 1.2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .btn-urgent {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
