:root {
    /* Existing Website Theme Colors (Keep these for consistency) */
    --primary-blue: #1a1aff; /* Your core brand blue */
    --bg-color: #0d0d0d; /* Main dark background */
    --medium-dark: #1a1a1a; /* Slightly lighter dark for elements */
    --text-light: #f5f5f5; /* Light text on dark backgrounds */
    --text-color: #f5f5f5; /* General text color */
    --text-secondary: #B0B0B0; /* Muted text */
    --accent-blue: #00BFFF; /* Your current primary blue accent */
    --accent: #73C2FB; /* Lighter blue accent */
    --font-main: 'Poppins', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    /* New Wedding-Specific Colors (Integrated with your theme) */
    --wedding-primary-navy: #1B3458; /* A darker, elegant navy */
    --wedding-dark-gray: #2A2E33; /* A soft, dark gray */
    --wedding-text-contrast: #F0F0F0; /* Off-white for contrast */
    --wedding-text-muted: #A0A0A0; /* Muted text for details */
    --wedding-accent-gold: #B89C62; /* A warm, elegant gold for accents (or a muted silver/rose gold) */
    --wedding-soft-blue: #AEC6CF; /* A very light, muted blue for soft elements */
    --wedding-soft-gray: #D3D3D3; /* A light, subtle gray for backgrounds */
    --wedding-gradient: linear-gradient(90deg, rgba(27, 52, 88, 0.6), rgba(42, 46, 51, 0.5)); /* Darker gradient for overlays */

    /* Re-evaluate these based on the new palette */
    /* --primary-accent: #2E5894; */ /* This blue is close to our new navy */
    /* --hover-accent: #1B3458; */ /* This is our new wedding-primary-navy */
    /* --text-dark: #041e22; */ /* Too dark, let's use the new navy or a softer dark */
    /* --text-muted: #4a4a4a; */ /* Could work, but let's use wedding-text-muted */
}
    html {
        scroll-behavior: smooth;
        height: 100%;
    }

    body {
    font-family: 'Roboto', sans-serif;
    /* Option 1: Solid Dark Background with subtle texture/pattern */
    background-color: var(--bg-color); /* Use your main website's dark background */
    /* Option 2: Darker background with a subtle, dark floral or damask pattern */
    /* background: url('../images/dark-floral-pattern.webp') repeat center center; */
    /* background-size: 800px auto; /* Adjust size as needed */
    /* Option 3: Very dark navy background with a subtle, large-scale watermark floral pattern */
    /* background: linear-gradient(rgba(27, 52, 88, 0.95), rgba(27, 52, 88, 0.95)), url('../images/large-dark-floral-watermark.webp') no-repeat center center; */
    /* background-size: cover; */

    position: relative;
    margin: 0;
    color: var(--text-light); /* Ensure body text defaults to light */
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
background: linear-gradient(45deg, rgba(30, 30, 30, 0.7), rgba(50, 90, 130, 0.3), rgba(135, 214, 255, 0.15));    }



h2 {
    font-family: "Tai Heritage Pro", serif;
    color: var(--wedding-text-contrast); /* Use the off-white for headings */
            font-size: clamp(1.4rem, 2vw, 2rem);
text-transform: uppercase;
}


.main-content {
        padding-top: clamp(80px, 10vh, 150px);
        padding-bottom: clamp(40px, 5vh, 60px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        text-align: center;
        width: min(90%, 1200px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }



    .tagline {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--wedding-text-contrast); /* Make it lighter for dark background */
    opacity: 0.8;
            font-family: 'Great Vibes', cursive;
    }

    h1 {
            font-family: "Tai Heritage Pro", serif;

            font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 700;
}

    .left,
    .right {
        flex: 1 1 clamp(250px, 30vw, 400px);
    }

    .left {
        text-align: left;
        padding: clamp(10px, 2vw, 20px);
    }

    .left h2 {
        margin-bottom: clamp(10px, 3vh, 20px);
        line-height: 1.2;
    }

    .left,
    .col p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: 1.8;
        margin-bottom: clamp(10px, 3vh, 20px);
    }

    

    .left p {
        padding-bottom: clamp(10px, 3vh, 20px);
    }

    .left ul {
        list-style: none;
        margin-left: clamp(10px, 4vw, 20px);
        margin-bottom: clamp(10px, 3vh, 20px);
    }

    .left li {
        margin-bottom: clamp(5px, 2vh, 10px);
        font-size: clamp(1rem, 2vw, 1.125rem);
        position: relative;
        padding-left: 20px;
    }

    .left li::before {
        content: '\f004';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    color: var(--wedding-accent-gold); /* Use accent gold for list hearts */
        position: absolute;
        left: 0;
        font-size: 0.9rem;
    }

    .intro {
        padding: clamp(20px, 5vw, 60px) clamp(15px, 4vw, 40px);
        width: min(90%, 1200px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 4vw, 40px);
        border-radius: 15px;
    }

    .intro .left {
        flex: 2;
    }

    .intro .left h2 {
    color: var(--wedding-accent-gold); /* Ensure headings are readable */
}

    .intro .right {
        flex: 1;
    }

    .portfolio {
        width: min(90%, 1200px);
        margin: 0 auto clamp(40px, 8vh, 80px);
        text-align: center;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px); /* Add padding to match other sections */
    }

    .portfolio h2 {
    color: var(--wedding-accent-gold);
}
    .portfolio p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .portfolio-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(20px, 4vw, 30px);
    }

    .project-link {
        display: block;
        text-decoration: none;
    }

    .project {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
         background: rgba(42, 46, 51, 0.95); /* Dark gray for project cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Adjust shadow for dark theme */
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .project:hover {
        transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .project img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: filter 0.3s ease;
    }

    .project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    background: linear-gradient(to top, var(--wedding-primary-navy), transparent); /* Use new navy */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 1.5rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .project:hover .project-overlay,
    .project.active .project-overlay {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .project.active img,
    .project:hover img {
        filter: brightness(0.8);
    }

    .project-overlay h3 {
        color: var(--wedding-accent-gold);
        font-size: clamp(20px, 5vw, 32px);
        margin-bottom: 0.5rem;
        text-align: left;
        font-family: "Tai Heritage Pro", serif;

    }

    .project-overlay p {
        font-size: clamp(14px, 2vw, 18px);
        margin: 0;
        text-align: left;
        color: #fff;
        font-weight: 300;
    }

    .pricing {
        width: min(90%, 80vw);
        margin: 0 auto clamp(40px, 8vh, 80px);
        text-align: center;
        padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
        border-radius: 16px;
    }

    .pricing h2 {
    color: var(--wedding-accent-gold);
        margin-bottom: 1rem;
    }

    .pricing p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 4vw, 30px);
        margin: 0 auto;
        max-width: 1200px;
        justify-items: center;
    }
    @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 4px 12px rgba(224, 36, 36, 0.4); }
    100% { transform: scale(1); }
}

    .sale-badge {
    background-color: #e02424;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(224, 36, 36, 0.3);
}

    .plan {
 background: rgba(42, 46, 51, 0.95); /* Dark gray for plan cards */
    border: 1px solid rgba(0, 0, 0, 0.2); /* Softer border */        border-radius: 12px;
        padding: clamp(20px, 4vw, 30px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 360px;
        width: 100%;
    }

    .plan:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(181, 131, 141, 0.3);
    }

    .plan h3 {
        font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    color: var(--wedding-accent-gold); /* Use accent gold for plan titles */
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 700;
        font-family: "Tai Heritage Pro", serif;
    }

    /* .plan .price {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
    color: var(--wedding-accent-gold); 
        margin: 0.5rem 0;
        text-align: center;
    }

    .plan .price span {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-muted);
        opacity: 0.7;
    } */

    .sale-price {
    font-size: clamp(2rem, 3.5vw, 2.4rem);
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
        color: var(--wedding-accent-gold); 


}

.original-price {
    text-decoration: line-through;
    color: #ff6666;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-left: 12px;
    vertical-align: middle;
    opacity: 0.6;
    font-weight: 500;
}

    .plan p,
.plan li {
    color: var(--wedding-text-muted);
}

    .plan p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        opacity: 0.8;
        margin: 0.5rem 0 1rem;
        text-align: center;
    }

    .plan ul {
        list-style: none;
        margin: 1rem 0;
        padding: 0;
        flex-grow: 1;
    }

    .plan li {
        font-size: clamp(1rem, 2vw, 1.125rem);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }

    .plan li::before {
        content: '\f004';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    color: var(--wedding-accent-gold); /* Use accent gold for list hearts */
        font-size: 0.9rem;
    }

    .plan.featured {
         background: linear-gradient(145deg, rgba(42, 46, 51, 0.95), rgba(27, 52, 88, 0.7)); /* Darker, cohesive gradient */
    border: 2px solid var(--wedding-accent-gold); /* Highlight with gold */
        position: relative;
        overflow: hidden;
    }

    .plan.featured::before {
        content: 'Popular';
        position: absolute;
        top: 20px;
        right: -50px;
        background: var(--primary-accent);
    background: var(--wedding-accent-gold); /* Gold for "Popular" tag */
        padding: 5px 50px;
        transform: rotate(45deg);
        font-size: 0.9rem;
        font-weight: 600;
    }
.cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    padding: clamp(30px, 6vw, 60px);
    text-align: center;
    margin: clamp(40px, 8vh, 80px) auto;
    max-width: clamp(700px, 90vw, 1000px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);

    margin-left: clamp(20px, 4vw, 40px); /* Minimum left padding */
    margin-right: clamp(20px, 4vw, 40px);
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    padding: 0;
    text-transform: none;
}

.cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .cta .btn {
        padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 3vw, 1.3rem);
    }
    .cta p {
    color: var(--wedding-text-contrast); /* Lighter text for the CTA */
        font-size: clamp(16px, 2vw, 18px);

    }

    .btn {
    background: var(--wedding-accent-gold); /* Change button background to gold */
    color: var(--wedding-primary-navy); /* Dark navy text on gold button */
    padding: 0.75rem 2rem; /* Slightly more padding for elegance */
    border-radius: 5px; /* Slightly less rounded for a more modern look */
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: var(--wedding-primary-navy); /* Dark navy on hover */
    color: var(--wedding-accent-gold); /* Gold text on hover */
    transform: scale(1.02);
} 


    @media screen and (max-width: 768px){
        .intro{
            flex-direction: column;
            text-align: center;
        }

        .intro .left,
        .intro .right {
            flex: unset;
            width: 100%;
        }

        .intro .left {
            order: 1;
        }

        .intro .right {
            order: 2;
        }

        .right img {
            max-width: 100%;
            height: auto;
        }

        .left ul,
        .col ul {
            margin-left: 0;
            text-align: left;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .project-overlay {
            pointer-events: auto;
        }

        .plan.featured::before {
            top: 8px;
            right: -50px;
            padding: 3px 50px;
            font-size: 0.7rem;
            transform: rotate(45deg);
        }
    }