/* Additional Styles for The Future AI Website */

/* Countdown Styles */
.countdown-container {
    margin: 30px 0;
}

#countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    background-color: rgba(255, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Event Details Styles */
.event-details {
    padding: 100px 0;
    background-color: #111;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-info-card {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.event-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.event-agenda {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
}

.event-agenda h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.agenda-day {
    margin-bottom: 30px;
}

.agenda-day h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.agenda-day ul {
    list-style-type: none;
}

.agenda-day ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.agenda-day ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Speakers Styles */
.speakers {
    padding: 100px 0;
}

.main-speaker {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
}

.speaker-image {
    flex: 1;
    max-width: 300px;
}

.speaker-info {
    flex: 2;
}

.speaker-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.speaker-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.speaker-bio {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.speaker-card {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

/* Location Styles */
.location {
    padding: 100px 0;
    background-color: #111;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.location-card {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.location-image {
    margin: 20px 0;
}

/* Contact Styles */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 15px;
}

.social-media {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    padding: 10px 15px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
}

.contact-form {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #222;
    color: var(--text-color);
    border-radius: 5px;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #cc0000;
}

/* Animation Delays */
.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.animate:nth-child(3) {
    animation-delay: 0.4s;
}

.animate:nth-child(4) {
    animation-delay: 0.6s;
}

.animate:nth-child(5) {
    animation-delay: 0.8s;
}

.animate:nth-child(6) {
    animation-delay: 1s;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }
    
    .main-speaker {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    #countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Header Scroll Effects */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Animated Elements */
.animated {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Info Styles */
.cta-info {
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-info p {
    margin-bottom: 10px;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}