/* Import Bootstrap */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Import futuristic font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px !important; /* Prevents Bootstrap from adjusting text sizes */
}

body {
    background-color: #000000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Bootstrap Container Fix */
.container-fluid {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 !important;
}

/* Title Styling */
.title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 12px #9b5de5, 0 0 25px #6a0dad;
    animation: glowText 2s infinite alternate;
}

/* Flexbox Layout */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

/* Left Section (Why Book a Demo) */
.info {
    max-width: 400px;
    text-align: left;
    padding: 0 !important;
}

.info h2, .info h3 {
    color: #a855f7;
    text-shadow: 0 0 8px #a855f7;
    margin-bottom: 10px;
}

.info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info ul {
    list-style: none;
    padding-left: 0;
}

.info li {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Calendly Box */
.calendar-box {
    max-width: 400px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid #a855f7;
    padding: 20px;
    box-shadow: 0 0 25px #a855f7;
    animation: fadeIn 1.5s ease-in-out;
    border-radius: 10px;
}

/* Calendar Container */
.calendar-container {
    width: 400px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px #a855f7;
    overflow: hidden;
    padding: 0;
    position: relative;
}

/* Calendly Iframe */
.calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes glowText {
    from {
        text-shadow: 0 0 12px #9b5de5, 0 0 25px #6a0dad;
    }
    to {
        text-shadow: 0 0 20px #9b5de5, 0 0 30px #6a0dad;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .calendar-box {
        width: 100%;
    }
}

/* Breakpoint for Small Phones (Below 400px) */
@media (max-width: 400px) {
    .title {
        font-size: 2rem; /* Slightly smaller for tiny screens */
        letter-spacing: 1px;
    }

    .info {
        max-width: 100%;
        text-align: center;
        padding: 10px;
    }

    .info p, .info li {
        font-size: 0.9rem;
    }

    .calendar-box {
        width: 100%;
        padding: 15px; /* Slightly smaller padding */
    }

    .calendar-container {
        width: 100%;
        height: 220px; /* Slightly smaller for fitting */
    }
}
