/* =========================================
   ZORKO BRANDING X RAJ RESORT LUXURY
   ========================================= */

/* The Zorko Accent Color (Slightly more vibrant gold/yellow than standard resort gold) */
.zorko-accent {
    color: #facc15 !important; /* Zorko vibrant yellow/gold */
}
.section-subtitle.zorko-accent::before,
.center-subtitle.zorko-accent::after {
    background-color: #facc15 !important;
}

/* Global spacing helpers */
.section-padding { padding: 100px 5%; }
.alt-bg { background-color: var(--bg-secondary); transition: background-color 0.5s ease; }

/* --- Zorko Hero Section --- */
.zorko-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    /* Dark gradient over background image to make the Zorko yellow pop */
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4)), url('pic\\zorko\\zorko.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.hero-content {
    z-index: 2;
    padding-top: 50px;
}
.zorko-title {
    font-size: 6rem;
    font-family: var(--font-heading);
    color: #ffffff !important; /* Always white over image */
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hero-desc {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Concept Section --- */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.concept-text h2 { font-size: 3.5rem; margin-bottom: 30px; }
.concept-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; transition: color 0.5s ease; }

.concept-images { position: relative; }
.img-main { 
    width: 90%; 
    border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}
.img-sub { 
    position: absolute; 
    bottom: -40px; 
    right: 0; 
    width: 50%; 
    border-radius: 20px; 
    border: 10px solid var(--bg-primary); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: border-color 0.5s ease;
}

/* Floating Animation */
.float-anim { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Experiences Grid --- */
.section-header.center { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3.5rem; }

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Zorko Signature Card Design */
.zorko-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.5s, border-color 0.5s;
    position: relative;
    overflow: hidden;
}
/* Subtle yellow glow on hover to match Zorko vibe */
.zorko-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.1); 
    border-color: rgba(250, 204, 21, 0.3);
}
.exp-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}
.exp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.zorko-card:hover .exp-img-wrapper img { transform: scale(1.1); }
.zorko-card h3 { 
    font-size: 1.5rem; 
    font-family: var(--font-heading); 
    margin-bottom: 15px; 
    color: var(--text-heading); 
    transition: color 0.4s ease; 
}
.zorko-card p { color: var(--text-muted); font-size: 0.95rem; transition: color 0.5s; }

/* --- CTA Section (Zorko Themed) --- */
.zorko-cta { text-align: center; }
.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 30px;
    background: radial-gradient(circle at center, rgba(250, 204, 21, 0.1) 0%, transparent 80%);
    border: 1px solid var(--border-color);
    transition: border-color 0.5s;
}
.cta-inner h2 { font-size: 3rem; margin-bottom: 20px; color: var(--text-heading); transition: color 0.4s; }
.cta-inner p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; transition: color 0.4s ease; }

/* Custom Zorko Button Override */
.zorko-btn {
    background-color: #facc15; /* Zorko Yellow */
    color: #000;
    border: 1px solid #facc15;
    font-weight: 700;
}
.zorko-btn:hover {
    background-color: transparent;
    color: var(--text-heading);
    border-color: var(--text-heading);
}

/* --- Scroll Animations --- */
.animate-scale { transform: scale(1.2); transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.animate-scale.in-view { transform: scale(1); }
.animate-fade-up { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.animate-fade-right { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.animate-fade-left { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.in-view { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE DESIGN (ALL DEVICES)
   ========================================= */
@media screen and (max-width: 992px) {
    /* Tablet Grid Adjustments */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Mobile Spacing & Layout */
    .section-padding { padding: 60px 5%; }
    .zorko-hero { padding-top: 100px; height: 70vh; }
    .zorko-title { font-size: 3.5rem; }
    .hero-desc { font-size: 1rem; padding: 0 15px; }
    
    .concept-text h2 { font-size: 2.5rem; }
    
    /* Fix the overlapping sub image on mobile */
    .concept-images {
        margin-top: 20px;
        padding-bottom: 40px; /* Give room for absolute image */
    }
    .img-main { width: 100%; }
    .img-sub { 
        width: 60%; 
        bottom: 0; 
        right: -10px; 
        border-width: 5px; /* Thinner border on mobile so it doesn't look bulky */
    }
    
    .exp-grid { grid-template-columns: 1fr; }
    
    .cta-inner { padding: 50px 20px; }
    .cta-inner h2 { font-size: 2.2rem; }
}
