@media (min-width: 700px) {
    .animated-section,
    .soon-content,
    .contact-section {
        max-width: 700px !important;
        margin: 4em auto;
        padding: 2em 2em;
        box-sizing: border-box;
        width: 100vw;
        overflow-x: hidden;
    }
}
/* Mobile-first base styles */
body {
    font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #232323;
    background: #f5f5f1;
    box-sizing: border-box;
    z-index: -1;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://i.pinimg.com/736x/32/fe/74/32fe74302bbecdaa150f91cfa11970c0.jpg') center top/cover no-repeat;
    z-index: -1;
    filter: blur(2px) brightness(0.98);
    opacity: 0.85;
    pointer-events: none;
}
.site-header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(158,65,180,0.13);
    padding: 1em 0 0.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-space {
    width: 220px;
    height: 120px;
    margin: 2em auto 1.2em auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
}
.site-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px #ACDBD1);
    border-radius: 0;
    background: none;
    margin: 0 auto;
}
nav {
    background: linear-gradient(90deg, #ACDBD1 0%, #FBF5BF 100%);
    padding: 1em 0 1em 0;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    border-bottom: 2px solid #E5CEE2;
}
nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 1em;
}
nav ul li a {
    color: #9E41B4;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    padding: 0.7em 1.2em;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(158,65,180,0.10);
    background: #FBF5BF;
    border: 2px solid #E5CEE2;
    letter-spacing: 0.7px;
    position: relative;
    margin-bottom: 0.5em;
}
nav ul li a:hover, nav ul li a.active {
    background: #FBF5BF;
    color: #9E41B4;
    box-shadow: 0 4px 16px rgba(158,65,180,0.13);
    border: 2px solid #ACDBD1;
    transform: scale(1.07);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.soon-content {
    background: rgba(255,255,255,0.45);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    padding: 2em 1.2em 2em 1.2em;
    text-align: center;
    max-width: 98vw;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
    box-sizing: border-box;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}
footer {
    background: linear-gradient(90deg, #ACDBD1 0%, #FBF5BF 100%);
    padding: 2em 0 1em 0;
    text-align: center;
    border-top: 2px solid #E5CEE2;
    box-shadow: 0 -2px 16px rgba(158,65,180,0.10);
    animation: fadeInUp 1.2s ease;
}
footer img {
    height: 28px;
    width: 28px;
    vertical-align: middle;
    border-radius: 8px;
    background: #FBF5BF;
    border: 2px solid #E5CEE2;
    box-shadow: 0 2px 8px #ACDBD1;
    transition: transform 0.2s, box-shadow 0.2s;
}
footer a:hover img {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 4px 16px #9E41B4;
}
.footer-tagline {
    color: #9E41B4;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    font-style: italic;
}

/* Larger screens */
@media (min-width: 700px) {
    nav ul {
        flex-direction: row;
        gap: 2.5em;
    }
    .soon-content {
        max-width: 1200px;
        padding: 2em 2em;
    }
}

/* Notify Form Styles */
    .notify-btn {
        background: linear-gradient(90deg, #bb5ecf 60%, #ACDBD1 100%);
        color: #FBF5BF;
        border: none;
        border-radius: 8px;
        padding: 0.7em 1.5em;
        margin-top: 1em;
    }
        .notify-form input[type="email"],
        .notify-form input[type="text"] {
            font-size: 0.95em;
            padding: 0.5em 0.8em;
            border-radius: 7px;
            background: #FBF5BF;
            border: 1px solid #ACDBD1;
            color: #222;
            width: 80%;
            max-width: 320px;
            box-sizing: border-box;
            display: block;
            margin: 0.5em auto;
        }



/* Modern font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Muthya&display=swap');


.tagline {
    color: #9E41B4;
    font-size: 1.15em;
    font-weight: 500;
    margin-top: 0.2em;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
    font-style: italic;
    text-align: center;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    background: none;
    border-radius: 0;
    padding: 0.2em 0.5em;
    display: block;
    border: none;
    box-shadow: none;
}

.about-header {
    margin-bottom: 2.5em;
    text-align: center;
}
.about-story, .about-mission, .about-values, .about-initiative {
        background: rgba(255,255,255,0.45);
        border-radius: 20px;
        box-shadow: 0 6px 32px rgba(158,65,180,0.12);
        margin-bottom: 2.5em;
        padding: 1.2em 0.7em;
        max-width: 98vw;
        margin-left: auto;
        margin-right: auto;
        display: block;
        border: 1px solid #E5CEE2;
        transition: box-shadow 0.3s, transform 0.3s;
        backdrop-filter: blur(12px) saturate(1.2);
    text-align: center;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-wrap: anywhere;
    box-sizing: border-box;
    width: 100%;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.13em;
    line-height: 1.7;
    color: #232323;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

@media (min-width: 700px) {
    .about-story, .about-mission, .about-values, .about-initiative {
        padding: 4em 2em 2em 2em;
        max-width: 650px;
    }
/* End of media query block */

}
.about-story:hover, .about-mission:hover, .about-values:hover, .about-initiative:hover {
    box-shadow: 0 12px 48px rgba(158,65,180,0.18);
    transform: translateY(-2px) scale(1.01);
}
.about-story h2, .about-mission h2, .about-values h2, .about-initiative h2 {
    color: #7a1e8a;
    margin-bottom: 0.7em;
    font-size: 1.6em;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    border-bottom: 2px solid #ACDBD1;
    padding-bottom: 0.3em;
    margin-top: 0;
    letter-spacing: 0.02em;
    font-weight: 700;
}
.about-values ul, .about-initiative ul {
    padding-left: 1.5em;
    color: #205c37;
    font-size: 1.15em;
    margin-bottom: 0.5em;
    font-family: 'Inter', Arial, sans-serif;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    display: block;
    list-style-position: outside;
}
.about-values ul li, .about-initiative ul li {
    margin-bottom: 0.5em;
    padding-left: 0.2em;
}
.about-initiative .target {
    margin-top: 1em;
    color: #9E41B4;
    font-weight: 600;
    font-size: 1.08em;
}

/* Contact Section Styles */
.contact-section.animated-section {
    background: rgba(255,255,255,0.45);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    padding: 2em 1.5em;
    max-width: 100vw;
    margin: 2.5em auto;
    animation: fadeInUp 1.2s ease;
    box-sizing: border-box;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.contact-section h1 {
    color: #9E41B4;
    margin-bottom: 1em;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.contact-form label {
    color: #2e8b57;
    font-weight: 600;
    text-align: left;
}
.contact-form input,
.contact-form textarea {
    padding: 0.7em;
    border: 1px solid #ACDBD1;
    border-radius: 8px;
    font-size: 1em;
    background: #FBF5BF;
    color: #222;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9E41B4;
}
.contact-form button {
    margin-top: 1em;
}

/* Modern Navigation Bar */
nav {
    background: linear-gradient(90deg, #ACDBD1 0%, #FBF5BF 100%);
    padding: 1em 0 1.2em 0;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    border-bottom: 2px solid #E5CEE2;
    animation: fadeInDown 1.2s ease;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 2.5em;
}
nav ul li {
    margin: 0;
}
nav ul li a {
    color: #9E41B4;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.18em;
    padding: 0.7em 1.5em;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(158,65,180,0.10);
    background: #FBF5BF;
    border: 2px solid #E5CEE2;
    letter-spacing: 0.7px;
    position: relative;
}
nav ul li a:hover, nav ul li a.active {
    background: #FBF5BF;
    color: #9E41B4;
    box-shadow: 0 4px 16px rgba(158,65,180,0.13);
    border: 2px solid #ACDBD1;
    transform: scale(1.07);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}

/* Site Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(158,65,180,0.13);
    padding: 0.5em 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-space {
    width: 220px;
    height: 120px;
    margin: 2em auto 1.2em auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
}

.site-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px #ACDBD1);
    border-radius: 0;
    background: none;
    margin: 0 auto;
}

/* Coming Soon Styles */
.coming-soon {
    background: transparent;
    color: #9E41B4;
    padding: 7em 2em 6em 2em;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInDown 1.2s ease;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}

.soon-content {
    background: rgba(255,255,255,0.45);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    padding: 2em 1.5em;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
    box-sizing: border-box;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
        /* Removed duplicate .soon-content definitions */
.soon-content h2 {
    color: #9E41B4;
    font-size: 2.5em;
    margin-bottom: 0.7em;
    padding-top: 0.2em;
}
.soon-content p {
    color: #2e8b57;
    font-size: 1em;
    margin-bottom: 1.2em;
    padding: 0 0.2em;
    line-height: 1.6;
}
.soon-content {
    background: rgba(255,255,255,0.45);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(158,65,180,0.10);
    padding: 2em 1.5em;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
    box-sizing: border-box;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    justify-content: center;
}
.notify-btn:hover {
    background: linear-gradient(90deg, #ACDBD1 0%, #9E41B4 100%);
    color: #9E41B4;
    transform: scale(1.04);
    box-shadow: 0 4px 16px #9E41B4;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ACDBD1 0%, #FBF5BF 100%);
    overflow: hidden;
    margin-bottom: 3em;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3em 2em 2em 2em;
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(158,65,180,0.10);
}
.hero-title {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.7em;
    font-weight: 800;
    color: #9E41B4;
    margin-bottom: 0.5em;
    letter-spacing: 1.5px;
}
.hero-tagline {
    color: #2e8b57;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 2em;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #FBF5BF;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.hero-cta {
    margin-top: 1.5em;
}
.gallery-title {
    text-align: center;
    font-size: 2em;
    color: #9E41B4;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    margin-bottom: 1.5em;
    font-weight: 700;
}

/* Animated Modern Footer */
footer {
    background: linear-gradient(90deg, #ACDBD1 0%, #FBF5BF 100%);
    padding: 2.5em 0 1.5em 0;
    text-align: center;
    border-top: 2px solid #E5CEE2;
    box-shadow: 0 -2px 16px rgba(158,65,180,0.10);
    animation: fadeInUp 1.2s ease;
}
footer p {
    color: #9E41B4;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
footer a {
    display: inline-block;
    margin-top: 0.5em;
    transition: transform 0.2s, box-shadow 0.2s;
}
footer a:hover img {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 4px 16px #9E41B4;
}
footer img {
    height: 32px;
    width: 32px;
    vertical-align: middle;
    border-radius: 8px;
    background: #FBF5BF;
    border: 2px solid #E5CEE2;
    box-shadow: 0 2px 8px #ACDBD1;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Section Animations */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .soon-content {
        padding: 1.2em 0.2em;
        gap: 1.2em;
        max-width: 100vw;
    }
}
@media (max-width: 700px) {
    nav ul {
        flex-direction: row;
        gap: 1em;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    nav ul li {
        margin: 0;
    }
    nav ul li a {
        font-size: 1em;
        padding: 0.7em 1em;
        margin-bottom: 0;
    }
    .soon-content {
        padding: 1.2em 1em 1.2em 1em;
        gap: 1.2em;
        max-width: 95vw;
        margin: 1.5em auto;
        border-radius: 18px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .soon-content {
        padding: 1em 0.7em 1em 0.7em;
        gap: 1em;
        max-width: 98vw;
        margin: 1em auto;
        border-radius: 14px;
        text-align: center;
    }
}

/* Arched image block styles */
.arched-image-block {
    width: 100%;
    max-width: 420px;
    height: 320px;
    margin: 2em auto 2em auto;
    border-radius: 180px 180px 24px 24px;
    box-shadow: 0 6px 32px rgba(158,65,180,0.18);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #9E41B4;
    padding: 0;
}
.arched-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 180px 180px 16px 16px;
    background: none;
    box-shadow: 0 8px 32px rgba(158,65,180,0.25);
    display: block;
}
