/* =========================================
   STAR WEDDINGS AND EVENTS - DARK TACTILE 3D
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Physical Color Palette */
    --onyx-base: #0a0a0a;
    --onyx-surface: #141414;
    --onyx-carved: #000000;
    
    --gold-base: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #996515;
    
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;

    /* Physical Shadows & Glassmorphism */
    --shadow-raised: 0 10px 30px rgba(0,0,0,0.8);
    --shadow-carved: inset 0 2px 10px rgba(0,0,0,0.9);
    
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--onyx-base);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; font-weight: 400; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--onyx-carved); }
::-webkit-scrollbar-thumb { background: var(--onyx-surface); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* --- 1. Tactile Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.logo-svg {
    height: 60px;
    width: 90px;
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
}

.logo-star {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #D0D0D0;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
}

.logo .highlight {
    color: var(--gold-base);
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(to bottom, #FFE082, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
    text-shadow: none;
}

.logo-img {
    width: auto;
    height: 300px;
    object-fit: contain;
}

footer .logo {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

footer .logo-img {
    width: auto;
    height: 250px;
    object-fit: contain;
}

nav ul { list-style: none; display: flex; gap: 30px; }

@media (max-width: 850px) {
    nav ul { display: none; }
    nav.active ul { 
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        gap: 15px; 
        background: var(--onyx-surface);
        padding: 20px;
        border-radius: 8px;
        margin-top: 15px;
        box-shadow: var(--shadow-raised);
    }
    .container {
        padding: 24px 4%;
    }
    .page-header {
        height: auto !important;
        min-height: 60vh !important;
        padding: 80px 5% !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-header > div {
        width: 100%;
        max-width: 100% !important;
    }
    .page-header h1 {
        font-size: 2rem !important;
    }
    .page-header p {
        font-size: 1rem !important;
        margin-bottom: 28px !important;
    }
    .page-header .hero-buttons {
        flex-direction: column !important;
        gap: 14px !important;
        align-items: stretch !important;
        width: 100%;
    }
    .page-header .hero-buttons a {
        width: 100% !important;
        text-align: center;
        box-sizing: border-box;
    }
    .grid-3, .testimonial-slider {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .card, .testimonial-card {
        padding: 22px 16px !important;
        font-size: 0.97rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .gallery-item {
        height: 200px !important;
        border-radius: 8px !important;
    }
    .filter-controls {
        flex-direction: column;
        gap: 8px !important;
    }
    .filter-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 0.95rem;
    }
    .counter-grid {
        flex-direction: column;
        gap: 18px !important;
        padding: 20px 0 !important;
    }
    .counter-number {
        font-size: 2.2rem !important;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .faq-container {
        padding: 0 2%;
    }
    .faq-question {
        padding: 12px 10px !important;
        font-size: 0.97rem !important;
    }
    .faq-answer {
        padding: 0 10px !important;
        font-size: 0.93rem !important;
    }
    footer {
        padding: 30px 4% 20px !important;
    }
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    background: transparent;
}

nav a:hover, nav a.active {
    color: var(--gold-base);
    background: var(--onyx-surface);
    box-shadow: var(--shadow-raised);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--gold-base);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
}

@media (max-width: 850px) {
    .menu-toggle { display: block; }
}

/* --- 2. Sections --- */
.container { padding: 100px 6%; }

/* Hero / Page Header */
.page-header {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 6%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-main);
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.section-title span { color: var(--gold-base); font-style: italic; }

/* --- 3. 3D Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(15,15,15,0.8));
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-raised);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover::before { opacity: 1; }

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.9);
    border-color: rgba(212, 175, 55, 0.4);
}

.card h3 { font-size: 1.6rem; color: var(--gold-base); margin-bottom: 15px; }
.card p { font-size: 0.95rem; color: var(--text-muted); }

/* --- 4. Museum Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(0%) contrast(1.1) brightness(0.9);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-raised);
    border: 2px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-base);
    z-index: 2;
    filter: grayscale(0%) contrast(1.15) brightness(1);
}

/* --- 5. Physical Forms & Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--onyx-surface);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-raised);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-info h3 span {
    color: var(--gold-base);
    font-style: italic;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--onyx-carved);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold-base);
    box-shadow: var(--shadow-carved);
}

.info-text h4 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.info-text p, .info-text a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.info-text a:hover {
    color: var(--gold-base);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    padding: 10px 20px;
    background: var(--onyx-carved);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gold-base);
    color: var(--onyx-base);
    transform: translateY(-3px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0; /* Handled by grid gap */
}

.form-group label {
    font-size: 0.85rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--onyx-carved);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    box-shadow: var(--shadow-carved);
    transition: var(--transition-smooth);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-base);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), var(--shadow-carved);
}

.form-side .cta-button {
    margin-top: 30px;
}

/* --- 6. Heavy Hardware Buttons --- */
.cta-button {
    display: inline-block;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-base));
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    opacity: 0;
}

.cta-button:hover::after {
    opacity: 1;
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-base), var(--gold-light));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* --- 7. WhatsApp Floating Action --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #121212;
    color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #25D366;
    color: var(--onyx-base);
    transform: scale(1.1) translateY(-5px);
}

/* --- 8. Footer --- */
footer {
    background: var(--onyx-carved);
    padding: 60px 6% 40px;
    text-align: center;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.02);
}

footer p { color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

/* --- 9. Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.show { opacity: 1; transform: translateY(0); }

/* --- 10. Counters --- */
.counter-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; padding: 40px 0; }
.counter-box { flex: 1; min-width: 200px; }
.counter-number { display: inline-block; font-size: 3.5rem; font-weight: 700; color: var(--gold-base); font-family: 'Playfair Display', serif; }
.counter-label { font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }

/* --- 11. Testimonials --- */
.testimonial-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(15,15,15,0.8));
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-raised);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.4); }
.testimonial-card .stars { color: var(--gold-base); font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card .review { font-size: 0.95rem; font-style: italic; color: #ccc; margin-bottom: 20px; line-height: 1.8; }
.testimonial-card .client-name { font-weight: 600; color: var(--gold-light); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* --- 12. Gallery Filters --- */
.filter-controls { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 25px;
    background: rgba(30,30,30,0.6);
    border: 1px solid var(--gold-base);
    color: var(--text-main);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold-base); color: var(--onyx-base); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

/* --- 13. FAQ Accordion --- */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(15,15,15,0.8));
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item.active { border-color: var(--gold-base); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15); }
.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
.faq-question:hover { color: var(--gold-base); }
.faq-icon { font-size: 1.5rem; color: var(--gold-base); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}
.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 200px; opacity: 1; }

@media (max-width: 1000px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
}

@media (max-width: 850px) {
    header { 
        flex-direction: row; 
        flex-wrap: wrap;
        padding: 10px 5%; 
        justify-content: space-between;
        align-items: center;
    }
    .logo { 
        min-height: unset; 
        justify-content: flex-start; 
        flex: 1;
    }
    .logo-img { 
        height: 70px; 
        min-height: 70px; 
        width: auto !important; 
    }
    .menu-toggle { 
        display: block;
        position: relative; 
        top: 0; 
        right: 0; 
    }
    nav { width: 100%; }
    nav ul { margin-top: 0; gap: 15px; justify-content: center; }
    .section-title { font-size: 2rem; }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        grid-column: span 1 !important;
    }
}

@media (max-width: 480px) {
    header { padding: 10px 4%; }
    .logo-img { height: 60px; min-height: 60px; }
    footer .logo-img { height: 120px; min-height: 120px; }
    .menu-toggle { font-size: 26px; }
    .container {
        padding: 40px 4%;
    }
    .page-header {
        min-height: 55vh !important;
        padding: 70px 4% !important;
    }
    .page-header h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
    }
    .page-header p {
        font-size: 0.95rem !important;
    }
    .contact-wrapper {
        padding: 20px 10px;
        gap: 20px;
        border-radius: 10px;
    }
    .form-side form {
        padding: 0;
    }
    .form-grid {
        gap: 15px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    .cta-button {
        padding: 14px 10px;
        font-size: 13px;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    .info-item {
        gap: 10px;
    }
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .social-links {
        gap: 8px;
        margin-top: 20px;
    }
}
