/* 
   ==========================================================================
   STYLES.CSS - MINAKER EVENTS 
   Combined Original Styles
   - Gradient Background
   - Alternating Content Blocks
   - Lightbox & Subcategory Support
   - Trusted Partners Grid
   ========================================================================== 
*/

:root {
    /* --- COLOR PALETTE --- */
    --text-main: #333333;
    --text-light: #ffffff;

    /* Background Gradient Colors */
    --bg-gradient-start: #9D80BA;
    /* Lilac/Purple */
    --bg-gradient-end: #E2D3F0;
    /* Light Pink/Purple */

    /* Buttons and Blocks */
    --btn-bg: #ffffff;
    --btn-text: #333333;
    --block-bg-light: #ffffff;

    /* Fonts */
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    /* Default headings also Montserrat */


    /* Highlight Colors */
    --color-green: #2ecc71;
    /* Emerald */
    --color-cyan: #17a2b8;
    /* Cyan/Blue */
    --color-magenta: #e84393;
    /* Pink/Magenta */
    --color-orange: #e67e22;
    /* Carrot Orange */
}

/* --- RESET & BASIC SETUP --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    /* Fixed Gradient Background */
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    background-attachment: fixed;
    min-height: 100vh;
    /* Sticky Footer Setup */
    display: flex;
    flex-direction: column;
}

main,
.container {
    flex: 1;
    /* Pushes footer down */
    width: 100%;
    /* Ensure full width */
}

/* Main should be a flex container to allow children to fill height */
main {
    display: flex;
    flex-direction: column;
}

/* Ensure header/footer don't grow */
header,
footer {
    flex-shrink: 0;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: inherit;
}


/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-green {
    color: var(--color-green);
    font-weight: bold;
}

.text-cyan {
    color: var(--color-cyan);
    font-weight: bold;
}

.text-magenta {
    color: var(--color-magenta);
    font-weight: bold;
}

.text-orange {
    color: var(--color-orange);
    font-weight: bold;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    /* Increased for 3-col grid */
    margin: 0 auto;
    padding: 0 15px;
}

.spacer {
    height: 40px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* --- HEADER --- */
.site-header {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
    /* White background */
    color: #333333;
    /* Black text */
    /* Sticky header for ease of use */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    /* Adjusted for Bebas Neue */
    font-weight: 400;
    /* Bebas is bold by default */
    display: block;
    margin-bottom: 2px;
    letter-spacing: 3px;
    line-height: 1;
    /* Tighter line height for Bebas */
}

@media (max-width: 768px) {
    .site-title {
        font-size: 3.5rem;
        /* Smaller for mobile */
    }
}

.site-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
/* --- HERO SECTION (Boxed Layout) --- */
.hero-section {
    background-color: transparent;
    padding: 60px 20px 0 20px;
    /* Top padding for separation */
    display: flex;
    justify-content: center;
}

.hero-content {
    background-color: #ffffff;
    /* White Box */
    color: #333333;
    /* Black text */
    width: 100%;
    max-width: 1200px;
    /* Boxed width */
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    /* Rounded corners */
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Optional card shadow */
}

/* Specific button style for light hero background */
.subtle-cta {
    border: 1px solid #9D80BA;
    color: #9D80BA;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.subtle-cta:hover {
    background-color: #9D80BA;
    color: #fff;
    text-decoration: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* --- NEW CARD GRID SYSTEM --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobile default */
    gap: 30px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.card-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9D80BA;
    /* Purple Accent */
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.card-link:hover {
    color: #7b5fa3;
}

.card-link::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.2s;
}

.card-link:hover::after {
    margin-left: 10px;
}

/* --- LIGHTBOX & GALLERY (Kept for compatibility) --- */
.gallery-header {
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
}

.gallery-grid,
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 60px;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.subcategory-card {
    /* Style for menu pages */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.subcategory-card:hover {
    transform: translateY(-5px);
}

.subcategory-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.subcategory-info {
    padding: 20px;
    text-align: center;
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* --- PARTNERS SECTION (Strict Split: Image Left | Content Right) --- */
.partners-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partners-image-col {
    flex: 1 1 40%;
    min-height: 500px;
    background-image: url('testimonials_disco_ball_1765045670855.png');
    background-size: cover;
    background-position: center;
}

.partners-content-col {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.partners-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    align-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.subtle-cta {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.subtle-cta:hover {
    background: #333;
    color: #fff;
}

/* RESPONSIVE PARTNERS */
@media (max-width: 768px) {
    .partners-section {
        flex-direction: column;
    }

    .partners-image-col {
        width: 100%;
        min-height: 300px;
    }

    .partners-content-col {
        width: 100%;
        padding: 40px 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- TESTIMONIALS SECTION (Minimal Revert) --- */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    text-align: center;
    border-top: 1px solid #eee;
    /* Reset from split layout */
    display: block;
    box-shadow: none;
    margin: 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #777;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: opacity 0.5s ease-in-out;
    /* Simple fade */
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: none;
    /* Remove slide */
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    transform: none;
}

.quote-icon {
    font-size: 3rem;
    color: #9370DB;
    opacity: 0.2;
    margin-bottom: 20px;
    line-height: 1;
    text-align: center;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* --- FOOTER SOCIALS --- */
html {
    height: 100%;
}

.site-footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: auto;
    /* Force push to bottom */
}

.footer-social-block {
    margin-bottom: 30px;
}

.footer-social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    display: flex;
    /* Critical fix for SVG sizing */
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Slightly larger touch target */
    height: 40px;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
    border-radius: 50%;
    /* Optional: nice touch */
    background: #fff;
    /* Optional: contrast */
}

.social-icon:hover {
    color: #9D80BA;
    /* Brand Purple */
    transform: translateY(-3px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* --- LIGHTBOX (Overlay) --- */
#lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    line-height: 1;
}

.contact-hero-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.8;
}

.contact-split-section {
    background-color: #fff;
    padding: 80px 0;
    flex: 1;
    /* Fills remaining space */
    display: flex;
    /* Helps align content if needed */
    flex-direction: column;
    justify-content: center;
    /* Opt: centers form vertically if super tall screen */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
    /* Ensure grid takes full width */
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #6A5ACD;
    /* Blue/Purple accent */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LEFT COL: INFO */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.contact-item .value {
    font-size: 1.1rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item .value:hover {
    color: #7B68EE;
}

/* RIGHT COL: FORM */
.clean-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.clean-form input,
.clean-form textarea {
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
    resize: none;
}

.clean-form input:focus,
.clean-form textarea:focus {
    border-bottom-color: #7B68EE;
}

.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #7B68EE;
    color: #7B68EE;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #7B68EE;
    color: #fff;
}

/* RESPONSIVE CONTACT */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-hero-title {
        font-size: 3.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-info {
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    /* Centered per user request/standard */
    align-items: center;
    text-align: center;
}

.footer-copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #aaa;
}