/* ============================================
   GOSICON 2026 - Main Stylesheet
   ============================================ */

:root {
    --gold-primary: #ac8947;
    --gold-light: #e4cc7d;
    --gold-dark: #7a5400;
    --dark-bg: #111111;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gold-gradient: linear-gradient(135deg, #ac8947, #e4cc7d, #ac8947);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: #333;
    overflow-x: hidden;
}

/* ============================================
   Top Banner Styling
   ============================================ */
.top-header {
    width: 100%;
    background: var(--black);
    text-align: center;
    border-bottom: 3px solid var(--gold-primary);
    overflow: hidden;
}
 /*  ============================================ */
.navbar {
    background-color: var(--dark-bg);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Navbar Brand */
.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Navbar Toggler */
.navbar-toggler {
    background-color: var(--gold-primary);
    border: none;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
}

.navbar-toggler:hover {
    background-color: var(--gold-light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.8rem 0.9rem !important;
    transition: var(--transition);
    border-radius: 8px;
    position: relative;
}

.nav-link i {
    margin-right: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-light) !important;
    background: rgba(172, 137, 71, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--gold-light) !important;
    background: rgba(172, 137, 71, 0.15);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Dropdown Menu (if needed) */
.dropdown-menu {
    background-color: var(--dark-bg);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--white);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--gold-primary);
    color: var(--black);
}

/* ============================================
   Hero Section Styling
   ============================================ */
.hero-section {
    background: linear-gradient(45deg, #ac8947, #e4cc7d, #ac8947);
    color: var(--black);
    padding: 50px 0 !important;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(0,0,0,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ============================================
   Section Title Styling
   ============================================ */
.section-title {
    font-weight: 700;
    color: var(--gold-dark);
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    display: block;
    margin: 15px auto 0;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet Devices */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav {
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    
    .navbar {
        padding: 0.5rem;
    }
    
    .navbar-brand img {
        width: 180px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem !important;
    }
    
    .nav-link i {
        margin-right: 5px;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .top-header img {
        max-height: 80px;
    }
    
    .navbar-brand img {
        width: 150px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem !important;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   Animation & Effects
   ============================================ */

/* Hover Effects for Cards (if needed) */
.card {
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Button Styling */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(172, 137, 71, 0.4);
    color: var(--black);
}

.btn-outline-gold {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* Loading Spinner */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   INDEX PAGE SPECIFIC STYLES
   GOSICON 2026
   ============================================ */

/* ============================================
   Hero Carousel Section
   ============================================ */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-inner {
    height: 350px;
    min-height: 300px;
}

#heroCarousel .carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(172, 137, 71, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 40px;
    height: 3px;
    background-color: var(--gold-light);
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--gold-primary);
}

/* ============================================
   Section Padding
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-padding.bg-light {
    background-color: var(--gray-light);
}

/* ============================================
   Welcome Card
   ============================================ */
.welcome-card {
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.welcome-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.welcome-card strong {
    color: var(--gold-dark);
}

.text-red {
    color: #B22222;
}

/* Committee Cards in Welcome Section */
.committee-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.committee-card:hover::before {
    left: 100%;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.committee-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.committee-card:hover img {
    transform: scale(1.05);
    border-color: var(--gold-light);
}

.committee-card h5 {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.designation {
    display: inline-block;
    color: #B22222;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 12px;
    background: rgba(178, 34, 34, 0.1);
    border-radius: 20px;
}

/* ============================================
   Conference Highlights Cards
   ============================================ */
.highlights-section .card {
    background: var(--white);
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.highlights-section .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.highlights-section .card:hover::after {
    width: 100%;
}

.highlights-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.highlights-section .card i {
    transition: all 0.3s ease;
}

.highlights-section .card:hover i {
    transform: scale(1.1);
}

.text-gold {
    color: var(--gold-primary);
}

.highlights-section .card h5 {
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: var(--dark-bg);
}

.highlights-section .card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   Dates Section Card
   ============================================ */
.bg-dark.text-white {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a) !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.bg-dark.text-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bg-dark.text-white i {
    transition: all 0.3s ease;
}

.bg-dark.text-white:hover i {
    transform: scale(1.1);
}

.bg-dark.text-white h3 {
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: var(--gold-light);
}

.bg-dark.text-white p {
    font-size: 1rem;
    color: #ccc;
}

/* ============================================
   Custom Button
   ============================================ */
.btn-primary-custom {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(172, 137, 71, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(172, 137, 71, 0.4);
    color: var(--black);
    background: linear-gradient(135deg, #e4cc7d, #ac8947);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

/* ============================================
   Countdown Section
   ============================================ */
.countdown-section {
    background: linear-gradient(135deg, #f7c152, #966505);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1%, transparent 1%);
    background-size: 50px 50px;
    animation: shift 20s linear infinite;
    opacity: 0.3;
}

@keyframes shift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.countdown-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.time-box {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    min-width: 120px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.time-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: var(--white);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1;
}

.time-box p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #B22222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Responsive Styles for Index Page
   ============================================ */

/* Tablet Devices */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    #heroCarousel .carousel-inner {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .countdown-section h2 {
        font-size: 2rem;
    }

    .time-box {
        min-width: 100px;
        padding: 15px;
    }

    .time-box span {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    #heroCarousel .carousel-inner {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
    }

    .btn-primary-custom {
        padding: 8px 25px;
        font-size: 0.9rem;
    }

    .welcome-card {
        padding: 20px !important;
    }

    .welcome-card p {
        font-size: 0.9rem;
        text-align: left;
    }

    .committee-card img {
        width: 100px;
        height: 100px;
    }

    .committee-card h5 {
        font-size: 1rem;
    }

    .countdown-section {
        padding: 50px 0;
    }

    .countdown-section h2 {
        font-size: 1.6rem;
    }

    .countdown-wrapper {
        gap: 15px;
    }

    .time-box {
        min-width: 70px;
        padding: 10px;
    }

    .time-box span {
        font-size: 1.5rem;
    }

    .time-box p {
        font-size: 0.7rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn-primary-custom {
        padding: 6px 18px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .countdown-wrapper {
        gap: 10px;
    }

    .time-box {
        min-width: 60px;
        padding: 8px;
    }

    .time-box span {
        font-size: 1.2rem;
    }

    .time-box p {
        font-size: 0.6rem;
    }

    .bg-dark.text-white .row > div {
        margin-bottom: 20px;
    }
}

/* ============================================
   Animation Classes for AOS
   ============================================ */
[data-aos] {
    pointer-events: auto !important;
}

/* Custom Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .carousel,
    .countdown-section,
    .btn-primary-custom,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .section-padding {
        padding: 20px 0;
    }

    .welcome-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   FOOTER STYLES
   GOSICON 2026
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold-primary);
}

/* Animated Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(172, 137, 71, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(172, 137, 71, 0.03) 0%, transparent 70%);
    animation: footerGlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 10%);
    }
}

/* Footer Headings */
.footer h4 {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer .col-lg-5:hover h4::after,
.footer .col-lg-2:hover h4::after {
    width: 60px;
}

.footer .text-lg-end h4::after {
    left: auto;
    right: 0;
}

/* Footer Text and Links */
.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 0.8rem;
}

.footer p strong {
    color: var(--gold-light);
    font-weight: 600;
}

.footer p small {
    color: #999;
    font-size: 0.85rem;
}

/* Footer Links */
.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold-primary);
}

.footer-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    left: -15px;
}

/* List Styling */
.footer ul.list-unstyled li {
    margin-bottom: 8px;
}

/* Footer Icons */
.footer .fa-solid,
.footer .fa-regular {
    color: var(--gold-primary);
    transition: all 0.3s ease;
    width: 25px;
}

.footer p:hover .fa-solid,
.footer p:hover .fa-regular {
    transform: scale(1.1);
    color: var(--gold-light);
}

/* GetSet Logo Styling */
.footer .col-lg-5 img {
    max-width: 180px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer .col-lg-5 img:hover {
    opacity: 1;
    transform: translateY(-3px);
    filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(172, 137, 71, 0.3));
}

/* Navbar Brand in Footer (if visible) */
.footer .navbar-brand {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0;
}

.footer .navbar-brand img {
    max-width: 200px;
    transition: all 0.3s ease;
}

.footer .navbar-brand img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Horizontal Rule */
.footer hr {
    border-color: rgba(172, 137, 71, 0.3);
    margin: 30px 0 20px;
    position: relative;
    z-index: 1;
}

/* Copyright Text */
.footer .text-center p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0;
    text-align: center;
}

.footer .text-center p:hover {
    color: var(--gold-light);
}

/* Contact Information Hover Effects */
.footer .col-lg-5 p {
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 5px;
}

.footer .col-lg-5 p:hover {
    transform: translateX(5px);
    color: #ddd;
}

/* Conference Manager Section */
.footer .col-lg-5:last-child p {
    text-align: right;
}

/* Responsive Adjustments for Footer */
@media (max-width: 991px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer h4::after {
        width: 30px;
    }

    .footer .text-lg-end {
        text-align: left !important;
        margin-top: 20px;
    }

    .footer .text-lg-end h4::after {
        left: 0;
        right: auto;
    }

    .footer .col-lg-5:last-child p {
        text-align: left;
    }

    .footer .col-lg-5 img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer p,
    .footer-link {
        font-size: 0.85rem;
    }

    .footer .fa-solid,
    .footer .fa-regular {
        width: 20px;
        font-size: 0.85rem;
    }

    .footer .col-lg-5 img {
        max-width: 130px;
    }

    .footer hr {
        margin: 20px 0 15px;
    }

    .footer .text-center p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 25px 0 15px;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer .col-lg-5 img {
        max-width: 120px;
    }

    .footer .fa-solid,
    .footer .fa-regular {
        width: 18px;
        font-size: 0.8rem;
    }

    .footer hr {
        margin: 15px 0 10px;
    }
}

/* Dark Mode Optimization for Footer */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, #050505 0%, #111 100%);
    }
}

/* Print Styles for Footer */
@media print {
    .footer {
        background: #f8f9fa;
        color: #000;
        border-top: 1px solid #ddd;
        padding: 20px 0;
    }

    .footer::before,
    .footer::after {
        display: none;
    }

    .footer h4 {
        color: #333;
    }

    .footer h4::after {
        background: #333;
    }

    .footer p,
    .footer-link {
        color: #555;
    }

    .footer .fa-solid,
    .footer .fa-regular {
        color: #666;
    }

    .footer img {
        filter: none !important;
    }
}

/* Accessibility Improvements */
.footer a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Additional Footer Enhancements */
.footer .list-unstyled {
    padding-left: 0;
}

/* Social Media Links (if added later) */
.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(172, 137, 71, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: var(--gold-light);
}

.footer .social-links a:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Back to Top Button (if implemented) */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(172, 137, 71, 0.4);
}

/* Footer Tooltip Styling */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: var(--gold-dark);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover:before {
    opacity: 1;
    bottom: calc(100% + 10px);
}