/* ===================================
   FOOTER STYLES - Modified Version
   =================================== */

:root {
    --primary-orange: #FF8C00;
    --deep-orange: #E67300;
    --light-orange: #FFA726;
    --dark-brown: #4A2511;
    --medium-brown: #6B3410;
    --light-brown: #8B5A2B;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #333333;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', 'Hind', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ===================================
   MAIN FOOTER
   =================================== */

.site-footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-orange) 0%, 
        var(--light-orange) 50%, 
        var(--primary-orange) 100%);
}

.footer-main {
    padding: 60px 0 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ===================================
   SAMMELAN LOGO SECTION (LEFT)
   =================================== */

.footer-sammelan-logo {
    text-align: center;
}

.sammelan-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.sammelan-logo:hover {
    transform: scale(1.05);
}

.sammelan-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-orange);
    margin-bottom: 8px;
    line-height: 1.4;
}

.sammelan-subtitle {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-event-info {
    background: rgba(255, 140, 0, 0.15);
    border-radius: 8px;
    padding: 11px;
    margin-top: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.event-dates {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-orange);
    margin-bottom: 8px;
}

.event-venue {
    font-size: 0.9rem;
    color: var(--cream);
    line-height: 1.5;
}

/* ===================================
   FOOTER COLUMNS - GENERAL
   =================================== */

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-orange);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--light-orange);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 15px;
}

/* ===================================
   QUICK LINKS & IMPORTANT LINKS
   =================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-orange);
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* ===================================
   SPECIAL THANKS SECTION (RIGHT)
   =================================== */

.special-thanks-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.maharashtra-sadan-logo {
    margin-bottom: 15px;
}

.sadan-logo {
    width: 120px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.sadan-logo:hover {
    transform: scale(1.05);
}

.thanks-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-orange);
    margin-bottom: 15px;
}

.portal-link {
    margin-bottom: 25px;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.portal-btn:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

.portal-btn .material-icons {
    font-size: 18px;
}

.organizer-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
}

.organizer-label {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 10px;
}

.organizer-logo {
    margin: 10px 0;
}

.footer-logo {
    width: 80px;
    height: auto;
    filter: brightness(1.1);
}

.organizer-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-orange);
    margin-top: 8px;
}

/* ===================================
   SOCIAL LINKS
   =================================== */

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

.footer-bottom {
    background: var(--dark-brown);
    padding: 20px 0;
    border-top: 10px solid rgba(83, 51, 11, 0.433);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--cream);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--light-orange);
}

.separator {
    color: var(--medium-gray);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.5);
}

.scroll-to-top .material-icons {
    font-size: 24px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sammelan-logo {
        width: 150px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-text,
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .sammelan-logo {
        width: 130px;
    }
    
    .sadan-logo {
        width: 100px;
    }
    
    .portal-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .footer-event-info {
        padding: 12px;
    }
    
    .event-dates {
        font-size: 1rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .site-footer {
        background: white;
        color: black;
    }
    
    .scroll-to-top,
    .footer-social {
        display: none;
    }
}


/* -----------------------------
   1) TOP STRIP (light band)
   ----------------------------- */
.sf-topstrip {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.sf-follow {
  padding: 18px 0;
  text-align: center;
}

.sf-follow-title {
  font-family: var(--h-font);
  font-weight: 950;
  color: rgba(17, 17, 17, 0.92);
  font-size: clamp(16px, 1.6vw, 22px);
  margin-bottom: 12px;
}

.sf-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sf-ico {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff; 
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08); 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sf-ico img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sf-ico:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  background: rgba(245, 130, 0, 0.06);
}