/* Base Styles */
:root {
    --color-purple-dark: #2d1b4e;
    --color-purple-medium: #4a2b7b;
    --color-purple-light: #6a3cb5;
    --color-pink-dark: #8c1b6c;
    --color-pink-medium: #c93b93;
    --color-pink-light: #ff69b4;
    --color-teal: #40e0d0;
    --color-white: #ffffff;
    --color-black: #000000;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Cinzel', serif;
    --transition-speed: 0.3s;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-medium), var(--color-pink-dark));
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-white);
    transition: all var(--transition-speed) ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-primary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--color-purple-light), var(--color-pink-light));
    margin-bottom: 30px;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.cosmic-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(138, 43, 226, 0.3),
                 0 0 30px rgba(255, 105, 180, 0.3);
    letter-spacing: 2px;
}

.cosmic-text-gradient {
    background: linear-gradient(to right, var(--color-teal), var(--color-pink-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    position: relative;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--color-pink-light);
}

.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--color-purple-light), var(--color-pink-light));
    border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-white);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    transform: translateY(-100%);
    transition: transform var(--transition-speed) ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    padding: 15px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}

.mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.9), rgba(140, 27, 108, 0.9));
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    opacity: 0.3;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-text .tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-explore {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--color-pink-light);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
}

.btn-explore:hover {
    background: linear-gradient(to right, var(--color-purple-light), var(--color-pink-light));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-explore i {
    margin-left: 8px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.image-glow {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-glow::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, var(--color-purple-light), var(--color-pink-light), var(--color-teal), var(--color-purple-light));
    border-radius: 15px;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
}

.hero-image img {
    border-radius: 10px;
    transform: scale(0.98);
    transition: transform var(--transition-speed) ease;
}

.hero-image:hover img {
    transform: scale(1);
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(45, 27, 78, 0.7), rgba(45, 27, 78, 0.9));
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.vision-box {
    background: linear-gradient(135deg, rgba(74, 43, 123, 0.6), rgba(201, 59, 147, 0.6));
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
}

.vision-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Offerings Section */
.diagonal-section {
    position: relative;
    z-index: 1;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 43, 123, 0.8), rgba(201, 59, 147, 0.8));
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: -1;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offering-card {
    background: rgba(45, 27, 78, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 105, 180, 0.3);
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

/* Videos Section */
.videos {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(140, 27, 108, 0.8));
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-item.large {
    grid-column: 1 / -1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(45, 27, 78, 0.7), rgba(45, 27, 78, 0.9));
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info, .contact-form {
    background: rgba(45, 27, 78, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.contact-details {
    margin: 20px 0;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 15px;
    color: var(--color-pink-light);
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(45, 27, 78, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink-light);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, var(--color-purple-light), var(--color-pink-light));
    border: none;
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-purple-dark), var(--color-pink-dark));
    text-align: center;
    padding: 60px 0;
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-pink-light));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-sm);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offerings-grid,
    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text .tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
