:root {
    --primary: #1a050c; 
    --gold: #d4af37;
    --accent: #9facf9;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(159, 172, 249, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.quote-author {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.9;
    text-align: right;
}

html {
    scroll-behavior: smooth;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    text-decoration: none;
}


body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at center, #2a0914 0%, #1a050c 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Custom Animations --- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes shine { to { background-position: 200% center; } }

/* --- Navigation --- */
nav {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 8%; z-index: 1000;
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Pinyon Script', cursive; font-size: 3rem; color: var(--accent); text-decoration: none; }

/* --- Hero Section --- */
.hero {
    height: 100vh; display: flex; align-items: center; padding: 0 8%; gap: 60px;
}
.hero-content { flex: 1.2; }
.hero-content h1 { 
    font-family: 'Pinyon Script', cursive; font-size: 5.5rem; color: var(--gold); 
    line-height: 1; margin-bottom: 15px;
}
.hero-content h2 { 
    font-size: 4rem; font-weight: 800; line-height: 1; margin-bottom: 25px;
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    background-size: 200% auto; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; animation: shine 3s linear infinite;
}

.price-tag {
    background: var(--glass); display: inline-block; padding: 12px 30px;
    border-radius: 50px; border: 1px solid var(--accent);
    font-weight: 800; font-size: 1.5rem; margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(159, 172, 249, 0.2);
}

.hero-visual { flex: 0.8; position: relative; perspective: 1000px; }
.main-img { 
    width: 100%; border-radius: 20px; border: 1px solid var(--border);
    transform: rotateY(-10deg); transition: 0.6s;
}
.hero-visual:hover .main-img { transform: rotateY(0deg) scale(1.02); }

/* --- Sections --- */
section { padding: 100px 8%; }
.section-title { font-family: 'Pinyon Script', cursive; font-size: 4rem; text-align: center; margin-bottom: 50px; color: var(--gold); }

/* --- Glass Cards --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.glass-card {
    background: var(--glass); padding: 40px; border-radius: 30px;
    border: 1px solid var(--border); backdrop-filter: blur(10px);
    transition: 0.5s; text-align: center;
}
.glass-card:hover { 
    border-color: var(--accent); transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.glass-card i { color: var(--accent); margin-bottom: 20px; }

/* --- Blessing Section --- */
.blessing-box {
    background: rgba(255, 255, 255, 0.02); padding: 60px;
    border-left: 5px solid var(--gold); border-radius: 0 30px 30px 0;
    max-width: 800px; margin: 0 auto; text-align: center;
}
.blessing-box p { font-style: italic; font-size: 1.4rem; opacity: 0.9; }

/* --- Hiring Form --- */
.form-section { background: var(--secondary); border-radius: 40px; padding: 60px; border: 1px solid var(--border); }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 8px; opacity: 0.6; }
.input-group input, .input-group select, .input-group textarea {
    width: 100%; padding: 15px; background: rgba(0,0,0,0.2); border: 1px solid var(--border);
    color: #fff; border-radius: 12px; outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: var(--accent); }

.btn {
    width: 100%; padding: 20px; background: var(--accent); color: var(--primary);
    border: none; border-radius: 12px; font-weight: 800; font-size: 1.1rem;
    cursor: pointer; text-transform: uppercase; transition: 0.4s;
}
.btn:hover { background: #fff; transform: scale(1.02); }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px;
    background: #25d366; width: 65px; height: 65px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999; animation: float 3s ease-in-out infinite;
}

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Gallery Section --- */
.gallery-section { padding: 100px 8%; background: var(--primary); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.gallery-card {
    position: relative; height: 350px; border-radius: 20px;
    overflow: hidden; border: 1px solid var(--border);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.gallery-card:hover img { transform: scale(1.15); filter: brightness(0.5); }

.overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(42, 9, 20, 0.7); opacity: 0; transition: 0.5s;
}
.gallery-card:hover .overlay { opacity: 1; }
.overlay span { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: var(--gold); }

/* Hidden Section Styling */
.hidden-gallery { display: none; margin-top: 25px; }

/* Button Styling */
.view-more-btn {
    padding: 15px 40px; background: transparent; border: 2px solid var(--accent);
    color: var(--accent); font-weight: 800; border-radius: 100px;
    cursor: pointer; transition: 0.4s; text-transform: uppercase;
}
.view-more-btn:hover { background: var(--accent); color: var(--primary); box-shadow: 0 0 20px var(--accent); }

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }
    nav .logo { font-size: 2.2rem; }
    nav > div { 
        gap: 15px !important; 
        font-size: 0.75rem !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        height: auto;
        padding: 120px 5% 60px;
        gap: 40px;
        text-align: center;
    }
    .hero-content { order: 2; }
    .hero-visual { order: 1; width: 100%; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content h2 { font-size: 2rem; }
    .hero-content p { font-size: 1rem !important; }
    .price-tag { 
        font-size: 1.1rem; 
        padding: 10px 20px; 
        margin-bottom: 20px;
    }
    .main-img { transform: none; }

    /* Sections */
    section { padding: 60px 5%; }
    .section-title { font-size: 2.5rem; margin-bottom: 30px; }

    /* Blessing Box */
    .blessing-box { 
        padding: 30px 20px; 
        border-radius: 0 20px 20px 0;
    }
    .blessing-box p { font-size: 1.1rem; }

    /* Glass Cards */
    .grid { gap: 20px; }
    .glass-card { padding: 30px 20px; border-radius: 20px; }
    .glass-card h3 { font-size: 1.3rem; }

    /* Gallery */
    .gallery-section { padding: 60px 5%; }
    .gallery-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .gallery-card { height: 250px; }
    .overlay span { font-size: 1.8rem; }

    /* Form Section */
    .form-section { 
        padding: 30px 20px; 
        border-radius: 20px; 
    }
    .form-section h2 { font-size: 2.5rem !important; margin-bottom: 25px !important; }
    #hireForm .grid { 
        grid-template-columns: 1fr !important; 
    }
    .input-group input, 
    .input-group select, 
    .input-group textarea { 
        padding: 12px; 
    }
    .btn { 
        padding: 15px; 
        font-size: 1rem; 
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    /* Footer */
    footer { padding: 25px 5%; }
}

/* Extra small devices */
@media (max-width: 480px) {
    nav > div { gap: 10px !important; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content h2 { font-size: 1.6rem; }
    .price-tag { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .blessing-box p { font-size: 1rem; }
    .form-section h2 { font-size: 2rem !important; }
}
/* Enable hover effect on mobile (touch devices) */
@media (hover: none) and (pointer: coarse) {

    .gallery-card:active img,
    .gallery-card:focus img {
        transform: scale(1.15);
        filter: brightness(0.5);
    }

    .gallery-card:active .overlay,
    .gallery-card:focus .overlay {
        opacity: 1;
    }
}
.gallery-card {
    cursor: pointer;
}

