/* ============================================
   Global Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Pink & Purple */
    --primary-color: #ff068f;
    --primary-dark: #cc056f;
    --primary-light: #ff3aa8;
    --secondary-color: #898ac4;
    --secondary-dark: #6b6da0;
    --secondary-light: #a5a6d6;
    --accent-color: #b886d9;
    --accent-light: #d4a8e8;
    
    /* Supporting Colors */
    --pink-light: #ffe6f4;
    --pink-lighter: #fff0f8;
    --purple-light: #e8e9f5;
    --purple-lighter: #f2f3fa;
    
    /* Neutral Colors */
    --text-dark: #2C1810;
    --text-medium: #4a4a5c;
    --text-light: #6b6b7a;
    --bg-light: #fafaff;
    --bg-cream: #fefeff;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 6, 143, 0.15);
    --shadow-md: 0 4px 12px rgba(255, 6, 143, 0.2);
    --shadow-lg: 0 10px 30px rgba(255, 6, 143, 0.25);
    --shadow-xl: 0 20px 50px rgba(255, 6, 143, 0.3);
    --shadow-primary: 0 4px 15px rgba(255, 6, 143, 0.4);
    --shadow-secondary: 0 4px 15px rgba(137, 138, 196, 0.3);
    
    /* Border & Radius */
    --border-radius: 18px;
    --border-radius-sm: 12px;
    --border-radius-lg: 25px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   Background & Main Wrapper
   ============================================ */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff068f 0%, #cc056f 30%, #898ac4 70%, #b886d9 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 6, 143, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(137, 138, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(184, 134, 217, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   Main Container
   ============================================ */
.coming-soon-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 255, 0.98) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255, 6, 143, 0.1);
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 6, 143, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Header Section
   ============================================ */
.header-section {
    text-align: center;
    margin-bottom: 2rem;
}

/* Mantra Section */
.mantra-section {
    margin-bottom: 1.5rem;
    position: relative;
}

.mantra-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 6, 143, 0.3);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
}

.mantra-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 6, 143, 0.4);
}

/* Logo Section */
.logo-section {
    margin: 1.5rem 0;
}

.logo-wrapper {
    display: inline-block;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, rgba(255, 6, 143, 0.15) 50%, var(--purple-lighter) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-primary), 0 0 0 3px rgba(255, 6, 143, 0.2);
    transition: var(--transition);
    position: relative;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.logo-wrapper:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-primary), 0 0 0 3px rgba(255, 6, 143, 0.4);
}

.logo-wrapper:hover::before {
    opacity: 1;
}

.logo-img {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Site Name Section */
.site-name-section {
    margin-top: 1.25rem;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-medium);
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.divider-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--secondary-color) 50%, var(--primary-color) 80%, transparent);
    margin: 1.25rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(255, 6, 143, 0.3);
}

/* ============================================
   Main Content Section
   ============================================ */
.main-content-section {
    margin: 1.5rem 0;
}

/* Coming Soon Message */
.coming-soon-message {
    text-align: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--purple-lighter) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 6, 143, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.coming-soon-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 6, 143, 0.3));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.coming-soon-text {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Launch Event Section
   ============================================ */
.event-section {
    margin: 2rem 0;
    text-align: center;
}

.event-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-lighter) 100%);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    border: 2px solid rgba(255, 6, 143, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    box-shadow: 2px 0 8px rgba(255, 6, 143, 0.3);
}

.event-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(255, 6, 143, 0.15);
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.event-date i,
.event-location i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-text {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.date-text sup {
    font-size: 0.6em;
    vertical-align: super;
}

.event-time {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.25rem;
}

.location-text {
    color: var(--text-medium);
    line-height: 1.6;
}

.event-content {
    text-align: left;
}

.event-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.event-subtitle i {
    margin-right: 0.5rem;
}

.event-objective,
.event-highlights,
.event-attendees {
    margin-bottom: 2.5rem;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.event-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 6, 143, 0.15);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-lighter) 100%);
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.highlight-content {
    flex: 1;
}

.highlight-content h6 {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.highlight-content p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.attendees-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.attendees-list li {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 6, 143, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-medium);
    font-size: clamp(0.9rem, 1.1vw, 0.98rem);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.attendees-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--purple-lighter) 100%);
}

.attendees-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================
   Countdown Timer Section
   ============================================ */
.countdown-section {
    margin: 2rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--purple-lighter) 100%);
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 6, 143, 0.2);
    text-align: center;
}

.countdown-title {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-title i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(255, 6, 143, 0.2);
    min-width: 60px;
    text-align: center;
}

.countdown-label {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.25rem;
    margin-top: -1rem;
}

.countdown-expired {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    padding: 1rem;
}

/* ============================================
   About Us Section
   ============================================ */
.about-section {
    margin: 2rem 0;
    text-align: center;
}

.about-content {
    background: linear-gradient(135deg, var(--pink-lighter) 0%, rgba(255, 6, 143, 0.08) 50%, var(--purple-lighter) 100%);
    padding: 2rem 1.75rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 6, 143, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    box-shadow: 2px 0 8px rgba(255, 6, 143, 0.3);
}

.about-text {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    text-align: left;
    position: relative;
    padding-left: 1.25rem;
}

.about-text::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    margin: 2rem 0;
}

.section-title {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255, 6, 143, 0.4);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 6, 143, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-lighter) 100%);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    position: relative;
}

.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(8px);
}

.contact-card:hover .contact-icon-wrapper::after {
    opacity: 0.6;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    word-break: break-word;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(255, 6, 143, 0.4);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* ============================================
   Footer Section
   ============================================ */
.footer-section {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 2px solid rgba(255, 6, 143, 0.3);
    text-align: center;
    background: linear-gradient(135deg, transparent, rgba(255, 6, 143, 0.05), transparent);
    border-radius: var(--border-radius);
    padding: 1.75rem 1.5rem 1.5rem;
}

.social-section {
    margin-bottom: 1.25rem;
}

.social-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(6px);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 6, 143, 0.4);
    color: var(--white);
}

.social-link:hover::before {
    opacity: 0.7;
}

.copyright {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 6, 143, 0.2);
}

.copyright p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .coming-soon-container {
        padding: 2rem 1.75rem;
        max-width: 96%;
    }

    .logo-img {
        max-width: 160px;
    }

    .logo-wrapper {
        padding: 1.1rem;
    }

    .coming-soon-message {
        padding: 2.5rem 2rem;
    }

    .about-content {
        padding: 2.5rem 2rem;
    }

    .contact-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .mantra-text {
        letter-spacing: 2px;
    }

    .logo-img {
        max-width: 130px;
    }

    .logo-wrapper {
        padding: 0.75rem;
    }

    .coming-soon-message {
        padding: 2rem 1.5rem;
    }

    .event-section {
        margin: 1.75rem 0;
    }

    .event-card {
        padding: 1.75rem 1.5rem;
    }

    .event-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .countdown-section {
        margin: 1.5rem 0;
        padding: 1.5rem 1.25rem;
    }

    .countdown-value {
        font-size: 1.5rem;
        padding: 0.6rem 0.8rem;
        min-width: 55px;
    }

    .countdown-separator {
        font-size: 1.3rem;
        margin-top: -0.8rem;
    }

    .highlight-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .attendees-list {
        grid-template-columns: 1fr;
    }

    .about-section {
        margin: 2rem 0;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-text {
        padding-left: 1.25rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .coming-soon-container {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }

    .header-section {
        margin-bottom: 2rem;
    }

    .mantra-section {
        margin-bottom: 1.5rem;
    }

    .mantra-text {
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .logo-section {
        margin: 1.5rem 0;
    }

    .logo-img {
        max-width: 110px;
    }

    .site-name-section {
        margin-top: 1.5rem;
    }

    .divider-line {
        width: 100px;
        margin: 1rem auto;
    }

    .coming-soon-message {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .coming-soon-icon {
        font-size: 2.5rem;
    }

    .event-section {
        margin: 2rem 0;
    }

    .event-card {
        padding: 2rem 1.5rem;
    }

    .event-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .event-date,
    .event-location {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .event-date i,
    .event-location i {
        font-size: 1.3rem;
    }

    .countdown-section {
        margin: 1.25rem 0;
        padding: 1.25rem 1rem;
    }

    .countdown-value {
        font-size: 1.3rem;
        padding: 0.5rem 0.7rem;
        min-width: 50px;
    }

    .countdown-label {
        font-size: 0.7rem;
        margin-top: 0.4rem;
    }

    .countdown-separator {
        font-size: 1.1rem;
        margin-top: -0.7rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .event-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .event-objective,
    .event-highlights,
    .event-attendees {
        margin-bottom: 2rem;
    }

    .event-list li {
        padding: 0.6rem 0 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .highlight-item {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
        text-align: center;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .highlight-content h6 {
        font-size: 1rem;
    }

    .highlight-content p {
        font-size: 0.9rem;
    }

    .attendees-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .attendees-list li {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .about-section {
        margin: 2rem 0;
    }

    .about-content {
        padding: 1.75rem 1.25rem;
    }

    .about-text {
        padding-left: 1rem;
        font-size: 0.95rem;
    }

    .about-text::before {
        left: -0.25rem;
        top: -0.25rem;
        font-size: 2.5rem;
    }

    .contact-section {
        margin: 2rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
    }

    .contact-card {
        padding: 1.25rem 1rem;
    }

    .contact-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .contact-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .contact-info {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .contact-link {
        padding: 0.4rem 1.25rem;
        font-size: 0.85rem;
    }

    .footer-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .copyright {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .copyright p {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .coming-soon-container {
        padding: 2rem 1.25rem;
    }

    .logo-img {
        max-width: 100px;
    }

    .logo-wrapper {
        padding: 0.75rem;
    }

    .coming-soon-message {
        padding: 1.5rem 1rem;
    }

    .event-card {
        padding: 1.5rem 1rem;
    }

    .event-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .event-date,
    .event-location {
        font-size: 0.85rem;
    }

    .event-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .highlight-content h6 {
        font-size: 0.95rem;
    }

    .highlight-content p {
        font-size: 0.85rem;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-text {
        padding-left: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1.25rem 1rem;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon {
        font-size: 1.2rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .main-wrapper {
        background: white;
    }

    .coming-soon-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .social-section {
        display: none;
    }
}
