/* Main Header Styles */
.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    background: #000000 !important;
    color: #FFF !important;
    padding: 15px 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo Styles */
.header-logo {
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block !important;
    visibility: visible !important;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    visibility: visible;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
    color: #FFFFFF;
    text-decoration: none;
}

/* Desktop Buttons */
.desktop-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-give {
    padding: 10px 25px;
    border: 2px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-give:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-register {
    padding: 10px 25px;
    background: #ff7400;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid #ff7400;
}

.btn-register:hover {
    background: #b85500;
    border-color: #b85500;
    color: #FFFFFF;
    text-decoration: none;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-register-mobile {
    padding: 8px 20px;
    background: #ff7400;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register-mobile:hover {
    background: #b85500;
    color: #FFFFFF;
    text-decoration: none;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle:hover span {
    background: #FFFFFF;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: #000000;
    z-index: 10000;
}

.mobile-menu-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close i {
    font-size: 32px;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 10px;
    flex: 1;
    min-height: calc(100vh - 100px);
    padding-bottom: 100px;
}

.mobile-menu-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    padding: 15px 0;
    font-family: 'Open Sans', sans-serif;
}

.mobile-menu-link:hover {
    opacity: 0.7;
    color: #FFFFFF;
    text-decoration: none;
}

/* Disabled Navigation Links */
.nav-link.disabled,
.mobile-menu-link.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    color: #999 !important;
}

.nav-link.disabled:hover,
.mobile-menu-link.disabled:hover {
    opacity: 0.5 !important;
    color: #999 !important;
    text-decoration: none !important;
}

/* New Badge Animation */
.new-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(10%, -30%);
    background-color: #ff0000;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.new-badge-text {
    display: inline-block;
    animation: blink-animation 1.2s infinite ease-in-out;
}

@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .header-nav,
    .desktop-nav,
    .desktop-buttons {
        display: none !important;
    }

    .mobile-header-actions {
        display: flex !important;
        gap: 15px;
        align-items: center;
    }

    .header-container {
        gap: 15px;
        justify-content: space-between;
    }

    .header-logo {
        flex-shrink: 0;
    }

    .header-logo img {
        height: 40px;
    }

    .btn-register-mobile {
        font-size: 14px;
        padding: 8px 16px;
        display: inline-block !important;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media screen and (min-width: 992px) {
    .mobile-header-actions {
        display: none;
    }
}

/* Body padding to account for fixed header - MUST be after styles.css */
body {
    padding-top: 80px !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

@media screen and (max-width: 991px) {
    body {
        padding-top: 70px !important;
    }
}

/* General Page Styles from index.html */
.ok-card3-panel {
    padding: 30px 130px;
}

.ok-clean {
    color: #000;
    font-weight: bold;
}

.ok-card3 figure h3 {
    font-weight: bold;
    font-size: 30px;
}

.ytf-hoz .ytfMeta > .ytfTitle {
    font-size: 13px;
}

.ytf-ver .ytfBlock .ytfTitle {
    font-size: 12px;
    font-weight: normal;
}

.ytfMeta > .ytfTitle {
    font-size: 12px;
    font-weight: normal;
    color: #EEDB46;
}

.ytf-slider .ytfPublished {
    font-size: 11px;
}

/* Slider Visibility Styles */
#rev_slider_1_1_wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background-color: transparent !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
    max-height: none !important;
    min-height: calc(100vh - 80px) !important;
}

#rev_slider_1_1 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    max-height: none !important;
}

/* Force visibility of slider content */
#rev_slider_1_1_wrapper > ul,
#rev_slider_1_1 > ul {
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    overflow: hidden !important;
}

#rev_slider_1_1 > ul > li {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    display: block !important;
}

#rev_slider_1_1 > ul > li:first-child {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
}

#rev_slider_1_1 > ul > li:not(:first-child) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

#rev_slider_1_1 > ul > li img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    object-fit: cover !important;
    position: relative !important;
    z-index: 1 !important;
}

#rev_slider_1_1 > ul > li:first-child img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
}

/* Hide timer and other slider elements that might create space */
.tp-bannertimer {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
}

/* Countdown Timer Styles */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    padding-top: 40px;
}

.time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box {
    background: #ff7400;
    color: #fff;
    font-size: 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
}

.time-container .label {
    font-size: 1rem;
    margin-top: 5px;
    color: #000;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif !important;
}

/* Remove spacing between slider and countdown */
#slideWrap {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: calc(100vh - 80px) !important;
}

#introBlock {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: 100% !important;
}

.iphase {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove top padding from conference info section to eliminate blank space */
#resourcesWrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.iphaseConferenceInfo {
    padding-top: 0 !important;
    padding-bottom: 80px !important;
    text-align: center;
    font-size: 17px;
    font-family: 'Open Sans', sans-serif !important;
}

.iphaseConferenceInfo h3 {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
    color: #000;
    font-size: 35px;
}

.iphaseConferenceInfo p {
    font-size: 20px;
    color: #000;
    font-family: 'Open Sans', sans-serif !important;
}

.customConferenceInfo {
    text-align: center;
    font-family: 'Open Sans', sans-serif !important;
}

.customConferenceInfo h3 {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
    color: #000;
    font-size: 19px;
}

.customConferenceInfo p {
    font-size: 17px;
    color: #000;
    font-family: 'Open Sans', sans-serif !important;
}

/* Footer Styling - Match register.php */
#footerWrap {
	background: #000 !important;
	padding: 30px 0 !important;
	font-size: 14px !important;
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.iphaseFooter {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.customFooter {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.customFooter center {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

/* Footer Styling - Match register.php */
#footerWrap {
	background: #000 !important;
	padding: 30px 0 !important;
	font-size: 14px !important;
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.iphaseFooter {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.customFooter {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

.customFooter center,
.customFooter .row center {
	color: #CCC !important;
	font-family: 'Open Sans', sans-serif !important;
}

/* Button styles for index.html */
.btn-outline-dark {
    color: #000000;
    border-color: #000000;
    background-color: transparent;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Open Sans', sans-serif !important;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    text-decoration: none;
}

/* Map Section Styles */
.iphaseMap {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.map-heading {
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.map-info-section {
    padding: 20px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.customMap {
    margin: 0;
    padding: 0;
}

.customMap .container-fluid {
    padding: 0;
    margin: 0;
}

.customMap .row {
    margin: 0;
    align-items: stretch;
}

.map-container {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.map-iframe {
    width: 100%;
    display: block;
    height: 450px;
    border-radius: 0;
}

/* Disabled Button Styles */
.btn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
}

.btn-disabled:hover {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
    text-decoration: none !important;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .ok-card3-panel {
        padding: 15px;
    }

    .ok-card3 .ok-card3-content {
        margin-bottom: 30px;
    }

    .iphaseLiveVideo {
        margin-top: 30px;
    }

    #full-mobile {
        display: block;
    }

    #slideWrap {
        height: auto !important;
    }

    #introBlock {
        height: auto !important;
    }

    #rev_slider_1_1_wrapper {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }

    #rev_slider_1_1 {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }

    #rev_slider_1_1 > ul {
        height: auto !important;
    }

    #rev_slider_1_1 > ul > li {
        height: auto !important;
        position: relative !important;
    }

    #rev_slider_1_1 > ul > li:first-child {
        height: auto !important;
    }

    #rev_slider_1_1 > ul > li img {
        height: 100% !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .iphaseConferenceInfo {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .iphaseMap {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .map-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .map-info-section {
        padding: 15px;
        margin-bottom: 15px;
        display: block;
        min-height: auto;
    }

    .map-container {
        padding: 0 15px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .map-iframe {
        height: 300px !important;
        border-radius: 8px;
        width: 100% !important;
    }

    .iphaseMap .row {
        margin: 0;
    }

    .iphaseMap .map-container.col-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .iphaseMap .map-info-section.col-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0;
    }

    /* Countdown timer mobile styles */
    #countdown {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 15px;
    }

    .time-box {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .time-container .label {
        font-size: 0.8rem;
        margin-top: 3px;
    }

    /* Button responsive styles */
    .btn-outline-dark {
        margin-bottom: 15px;
        font-size: 14px;
    }

    
}

