
:root {
    --azure-blue: #0078D4;
    --azure-light-blue: #50b0e6;
    --azure-dark-blue: #2d44b4;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--azure-blue) 0%, var(--azure-dark-blue) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.header-container {
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Align items vertically in the center */
}


        
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.main-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Optional glow effect */
}

@media (min-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* makes it responsive on smaller screens */
}

.header-image img {
    max-width: 220px;
    height: auto;
}

.header-wrapper {
    position: relative;
}

.header-image-absolute {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding-left: 0px; /* optional: space from left edge */
}

.header-image-absolute img {
    max-width: 280px;
    height: auto;
}


.event-date {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin: 1rem 0;
    font-weight: bold;
}
.event-logo {
    float: left;
    width: 160px;
    margin-right: 20px;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--white);
    color: var(--azure-blue);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--azure-blue);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--azure-blue);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--azure-blue);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1.5rem;
}

.stat-item {
    flex: 1 0 30%;
    text-align: center;
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--azure-blue);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Get Involved Section */
.get-involved {
    background-color: var(--light-gray);
}

.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.involved-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--azure-blue);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Sponsors Section */
.sponsors {
    background-color: var(--white);
    text-align: center;
}

.sponsor-levels {
    margin-top: 3rem;
}

.sponsor-level {
    margin-bottom: 3rem;
}

.level-title {
    font-size: 1.5rem;
    color: var(--azure-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.level-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--azure-blue);
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.sponsor-logo {
    /* background-color: var(--light-gray); */
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* Sessions Section */
.sessions {
    background-color: var(--light-gray);
}

.sessionize-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 500px;
}

/* Chatbot Section */
.chatbot {
    background-color: var(--white);
}

.chatbot-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chatbot-image {
    text-align: center;
}

.chatbot-demo {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 1rem;
}

.chat-input {
    display: flex;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.chat-input button {
    padding: 0.8rem 1.5rem;
    background-color: var(--azure-blue);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}








/* Venue Section */
.venue {
    background-color: var(--light-gray);
}

.venue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.venue-details {
    font-size: 1.1rem;
}

.venue-address {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--azure-blue);
}

.venue-map {
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: var(--azure-dark-blue);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--azure-light-blue);
}

.footer-section p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--azure-light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content,
    .chatbot-container,
    .venue-container {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 0.7rem;
    }
}
.cookie-banner {

    display: none;

}

/* Add your styles here */
.privacy-link {
    color: #1abc9c;
    text-decoration: underline;
}
/* Add your styles here */

.accept-cookies-btn {
    padding: 0.5rem 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Add your styles here */

.decline-cookies-btn {
    padding: 0.5rem 1rem;
    background-color: #c0392b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Add your custom styles here */

.sessionize-placeholder {
    text-align: center;
    padding: 2rem;
}

/* Add your custom styles below */

.sessionize-placeholder-container {
    margin-top: 2rem;
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
}

.sponsor-info {
    margin-top: 3rem;
}

/* Add your custom styles here */
.custom-list {
    list-style: none;
    margin-top: 1rem;
}

/* Add your custom styles here */

.azure-check-icon {
    color: var(--azure-blue);
    margin-right: 0.5rem;
}

/* Add your styles here */

.chat-message {
    background-color: #e6f3ff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    max-width: 80%;
}
/* Add your custom styles here */

.contact-section {
    background-color: var(--white);
}

/* Add your custom styles here */

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

/* Add your custom styles here */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Add your custom styles here */

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Add this new CSS rule */
.label-style {
    display: block;
    margin-bottom: 0.5rem;
}

/* Add your custom styles here */

.email-label {
    display: block;
    margin-bottom: 0.5rem;
}

/* Add your styles here */

.form-input-email {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Add your styles here */

.form-input-subject {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* Add your styles here */

.margin-bottom-large {
    margin-bottom: 1.5rem;
}
/* Add your styles here */

.message-label {
    display: block;
    margin-bottom: 0.5rem;
}

/* Add your custom styles here */

.textarea-style {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* Add your styles here */
.margin-bottom-1rem {
    margin-bottom: 1rem;
}
/* Add your styles here */

.gdpr-label {
    display: flex;
    align-items: center;
}
/* Add your styles here */

.gdpr-checkbox {
    margin-right: 0.5rem;
}

/* Add your styles here */

.form-response {
    display: none;
    margin-bottom: 1rem;
}
/* Add your custom styles here */

.send-message-btn {
    padding: 0.8rem 2rem;
}

/* Add your custom styles here */

.venue-extras {
    margin-top: 2rem;
    text-align: center;
}

/* Add your custom styles here */

.venue-offer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Add your styles here */

.details-style {
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Add your custom styles below */

.menu-details-summary {
    cursor: pointer;
    font-weight: bold;
    color: #0078d7;
}


/* Add your styles here */

.details-container {
    padding: 1rem;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin-top: 1rem;
}

.organizers {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.organizers-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.organizers-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.organizer-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.organizer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #0078d7;
}

.organizer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.organizer-title {
    font-size: 1rem;
    color: #0078d7;
    margin-bottom: 15px;
}

.organizer-link {
    display: inline-block;
    color: #0078d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.organizer-link:hover {
    color: #00589f;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .organizers-row {
        flex-direction: column;
        align-items: center;
    }
    
    .organizer-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 20px;
    }
}




.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.bg-light-gray { background-color: var(--light-gray); }
.p-2 { padding: 2rem; }
.rounded-10 { border-radius: 10px; }
.text-center { text-align: center; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.mb-1 { margin-bottom: 1rem; }
.chat-msg-bubble { background-color: #e6f3ff; padding: 0.8rem; border-radius: 10px; }
