@charset "UTF-8";

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */

:root {
    /* Brand colors */
    --uta-blue:       #1C3F7F;
    --uta-orange:     #F97316;
    --uta-light-blue: #5B92E5;

    /* Neutral colors */
    --text-color:   #333;
    --light-bg:     #f4f4f9;
    --white:        #ffffff;
    --border-color: #ddd;
    --color-shadow: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-family-primary: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1100px;

    /* Spacing */
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;

    /* Misc */
    --border-radius-md: 0.5rem;
    --transition-speed: 0.3s;
}


/* ============================================================
   2. BASE / RESET
   ============================================================ */

/* Prevent any element from overflowing the viewport width */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3 {
    color: var(--uta-blue);
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

p { margin-bottom: 1em; }

a {
    text-decoration: none;
    color: var(--uta-orange);
    transition: color 0.3s ease;
}

a:hover { color: var(--uta-light-blue); }


/* ============================================================
   4. LAYOUT
   ============================================================ */

.main-content-wrapper { flex: 1; }

section {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    color: var(--uta-blue);
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.section-copy {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.info-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 50px;
    text-align: center;
    align-items: center;
    align-content: center;
    max-width: 1000px;
}


/* ============================================================
   5. BUTTONS & CTAs
   ============================================================ */

.button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9em;
    border: 2px solid transparent;
}

.primary-cta {
    background-color: var(--uta-orange);
    color: var(--white);
    border-color: var(--uta-orange);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.2);
}

.primary-cta:hover {
    background-color: #e6600c;
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.5);
}

/* Note: .secondary-cta is declared twice in the original; merged here */
.secondary-cta {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    clear: both;
    background-color: var(--white);
    color: var(--uta-blue);
    border-color: var(--uta-blue);
}

.secondary-cta:hover {
    background-color: var(--uta-blue);
    color: var(--white);
}

.cta-button {
    font-size: 0.8em;
    padding: 8px 18px;
}

.hero-cta {
    font-size: 1.1em;
    padding: 14px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */

.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--uta-blue);
    font-weight: 900;
    font-size: 1.2em;
    text-transform: none;
}

.site-logo {
    height: 70px;
    width: auto;
    border-radius: 4px;
    margin-right: 10px;
}

.nav-links-container a {
    color: var(--text-color);
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
    font-weight: 600;
}

.nav-links-container a.active,
.nav-links-container a.js-hover-active {
    color: var(--uta-orange);
}

.nav-links-container a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background-color: var(--uta-orange);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1.5px;
}

.nav-links-container a.active::after,
.nav-links-container a.js-hover-active::after {
    width: 100%;
    left: 0;
}


/* ============================================================
   7. FOOTER
   ============================================================ */

.site-footer {
    background-color: var(--uta-blue);
    color: var(--light-bg);
    padding-top: 40px;
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.footer-content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
}

.footer-links,
.footer-credit,
.social-icons {
    padding: 10px 0;
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.footer-links a {
    display: block;
    color: var(--light-bg);
    margin-bottom: 8px;
}

.footer-credit {
    text-align: center;
    line-height: 1.4;
}

.web-weavers-logo {
    height: 90px;
    width: auto;
    margin-bottom: 5px;
    border-radius: 4px;
}

.social-icons { text-align: right; }

.social-icon {
    color: var(--white);
    font-size: 1.5em;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icon:hover { color: var(--uta-orange); }

.copyright-bar {
    background-color: #153265;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   9. HOME PAGE
   ============================================================ */

/* ── 9a. Hero ── */
.home-styling{
    padding-top: 0px;
    margin-top: 0;;
}

.hero-section {
    position: relative;
    background: url('img/webpagebackground.webp') no-repeat center center;
    background-size: cover;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 200px 20px 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--uta-blue);
    max-width: 900px;
    padding: 0 30px;
}

.hero-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 15;
    padding-top: 0;
}

.hero-tagline {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(3, 28, 130, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.75em;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: var(--uta-blue);
    text-shadow: 2px 2px 6px rgba(168, 168, 168, 0.753);
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(233, 123, 27, 0.9);
    max-width: 800px;
}

/* ── 9b. Value Propositions ── */

.value-propositions {
    background-color: var(--uta-light-blue);
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
    color: var(--white);
    max-width: none;
}

.proposition-card {
    flex: 1;
    max-width: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.proposition-card i {
    font-size: 3em;
    color: var(--uta-orange);
    margin-bottom: 15px;
}

.proposition-card h3 {
    color: var(--white);
    margin-top: 0;
    font-weight: 700;
}

/* ── 9c. About Section ── */

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: var(--white);
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-image {
    float: right;
    width: 400px;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px 30px;
    border-radius: 12px;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ── 9d. Speaker Teaser ── */

.speaker-teaser-section {
    background-color: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.speaker-teaser-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 25px;
}

.speaker-photo-container { min-width: 150px; }

.speaker-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--uta-orange);
}

.speaker-details { text-align: left; }

.speaker-details h3 {
    margin: 0 0 5px 0;
    color: var(--uta-orange);
}

.speaker-title {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

/* ── 9e. Feature Cards & Details ── */

.content-section {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.organizing-team {
    padding-bottom: 0;
    margin-bottom: 0;
}

.philanthropy-logo {
    width: 500px;
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    border-radius: 10px;
    display: block;
}

.new-details-section {
    background-color: var(--white);
    padding: 50px 0;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.presented-by { font-size: 18px; }

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px auto;
    padding-bottom: 10px;
    border: 2px solid var(--uta-blue);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    color: var(--uta-blue);
    background-color: var(--white);
    padding: var(--spacing-md) var(--spacing-md);
    border-radius: 1rem;
    box-shadow: 0 10px 20px -5px #dadaf41a;
    border-top: 8px solid var(--uta-blue);
    height: 100%;
    transition: all var(--transition-speed) ease;
    padding-bottom: 0;
}

.feature-card:hover {
    background-color: var(--uta-blue);
    color: var(--white);
    border-color: var(--uta-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-card:nth-child(2) { border-top-color: var(--uta-light-blue); }
.feature-card:nth-child(3) { border-top-color: var(--uta-orange); }

.feature-card i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--uta-orange);
    transition: color 0.3s ease;
}

.feature-card:hover i { color: var(--white); }

.feature-card h3 {
    margin: 0;
    font-size: 1.1em;
    color: inherit;
    margin-bottom: 10px;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--uta-blue);
}

.card-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
}

.card-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--uta-light-blue);
}

.cta-row {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px dashed rgba(28, 63, 127, 0.2);
}

.cta-row p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.ticket-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    align-content: center;
}
.capacity-notice {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.capacity-notice h2 {
    font-size: 1.5em;
    margin-top: 3rem;
    color: var(--uta-orange);
}


/* ── 9f. Ticket Inclusion ── */

.ticket-inclusion-box {
    align-items: center;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}
.inclusion-title {
    background-color: var(--uta-blue);
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.ticket-inclusion-table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--white);
}

.inclusion-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.inclusion-item:nth-child(even) { background-color: #f9f9fc; }

.inclusion-item i {
    color: var(--uta-orange);
    font-size: 1.2em;
    text-align: center;
}

.inclusion-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}
/* SECTION WRAPPER */
.cfre-section {
    width: 100%;
    display: flex;
    justify-content: center;   /* centers the box */
    padding: 60px 20px;
}

/* CFRE BOX */
.cfre-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    max-width: 900px;          /* keeps it aligned with rest of site */
    width: 100%;

    background-color: var(--light-bg);
    border-left: 6px solid var(--uta-orange);
    border-radius: 12px;
    padding: 1.5rem 2rem;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Logo */
.cfre-logo {
    max-height: 70px;
    width: auto;
}

/* Text */
.cfre-title {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.cfre-text {
    margin: 0;
    font-size: 0.95rem;
}

.footer-credit a {
    color: var(--white);
}

.footer-credit a:hover {
    color: var(--uta-orange);
}
/* ============================================================
   10. ABOUT PAGE
   ============================================================ */

/* ── 10a. Cards (Mission / Vision / Info) ── */

.card-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.mission-card { justify-self: center; }

.info-card {
    text-align: center;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--uta-light-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-title {
    color: var(--uta-orange);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    align-items: center;
}

.info-text {
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

/* ── 10b. Stats ── */

.stats-section {
    background: linear-gradient(135deg, var(--uta-blue) 0%, var(--uta-light-blue) 100%);
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 4em;
    font-weight: 900;
    color: var(--uta-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white);
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

/* ── 10c. Gallery ── */

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-photo img { transform: scale(1.1); }

.gallery-caption {
    padding: 15px;
    background: var(--white);
    color: var(--uta-blue);
    font-weight: 600;
    text-align: center;
    margin: 0;
    font-size: 1em;
}

/* ── 10d. Team ── */

.team-grid {
    display: flex;
    gap: 30px;
    align-items: stretch; /* KEY: makes them equal height */
    flex-wrap: wrap;
}

/* Each card */
.team-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Push content to fill full height */
.team-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--uta-orange);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: var(--uta-blue);
    font-size: 1.3em;
    margin: 0 0 8px 0;
}

.team-title {
    color: #666;
    font-style: italic;
    margin: 0;
    font-size: 0.95em;
}

/* ── 10e. Sponsors (About Page) ── */

.sponsorship-opportunities { padding-bottom: 0; }

.sponsors-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: 15px;
}

.sponsors-content {
    max-width: 600px;
    margin: 0 auto;
}

.sponsor-logo { margin-bottom: 25px; }

.sponsor-logo img {
    max-width: 300px;
    height: auto;
}

.sponsor-partners {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-color);
}


/* ============================================================
   11. REGISTRATION PAGE
   ============================================================ */

/* ── 11a. Welcome Block ── */

.welcome-block {
    background: linear-gradient(135deg, var(--uta-blue) 0%, var(--uta-light-blue) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.welcome-title {
    color: var(--white);
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
}

.welcome-copy {
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* ── 11b. Form ── */

#registrationForm {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--uta-light-blue);
}

#registrationForm h2,
h2 {
    color: var(--uta-blue);
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    margin-top: 0;
}

#registrationForm label {
    display: block;
    color: var(--uta-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1em;
}

#registrationForm input[type="text"],
#registrationForm input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-family-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#registrationForm input[type="text"]:focus,
#registrationForm input[type="email"]:focus {
    outline: none;
    border-color: var(--uta-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

#registrationForm br { display: none; }

#registrationForm button[type="submit"] {
    width: 100%;
    padding: 15px 25px;
    background-color: var(--uta-blue);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    margin-top: 10px;
}

#registrationForm button[type="submit"]:hover {
    background-color: #0c10e6;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

#registrationForm button[type="submit"]:active { transform: translateY(0); }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-field input,
.form-field select {
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--uta-blue);
    box-shadow: 0 0 0 3px rgba(28, 63, 127, 0.15);
}

.form-field input::placeholder,
.form-field select {
    color: #666;
}

/* ── 11c. Status Messages ── */

#status {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

#status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ============================================================
   12. AGENDA PAGE
   ============================================================ */

/* ── 12a. Hero ── */

.agenda-hero {
    position: relative;
    background: url('img/webpagebackground.webp') no-repeat center center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

.agenda-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 15;
}

.agenda-date {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(3, 28, 130, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.agenda-title {
    font-size: 5em;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: var(--uta-blue);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.753);
}

.agenda-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(233, 123, 27, 0.9);
}

.agenda-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.agenda-extra.expanded { max-height: 3000px; }

.agenda-toggle-btn {
    margin: 24px auto 0;
    display: block;
    background: none;
    border: none;
    color: var(--uta-blue);
    font-weight: 600;
    cursor: pointer;
    font-size: 1.2rem;
    padding-bottom: 20px;
}

.agenda-toggle-btn:hover { text-decoration: underline; }

.agenda-toggle-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.agenda-toggle-btn.expanded i { transform: rotate(180deg); }

/* ── 12b. Agenda Table ── */

.agenda-section {
    padding: 0.5rem 1rem;
    max-width: 900px;
    margin: 0 auto 50px;
}

.agenda-table {
    display: grid;
    gap: 1.5rem;
}

.agenda-row {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.agenda-time {
    font-weight: 700;
    color: var(--uta-blue);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.agenda-session h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.agenda-session ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.agenda-session li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.agenda-session li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--uta-orange);
}

.registration-section { text-align: center; }

.registration-section a { font-size: 1.2rem; }

/* ── 12c. Speakers Grid ── */

.speakers-section {
    padding: 4rem 1.5rem;
    background-color: #f9fafb;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}


@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

.speaker-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.speaker-card img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.speaker-bio {
    font-size: 0.95rem;
    color: #4b5563;
}

.hidden-speaker { display: none; }

.expand-speakers-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #1C3F7F;
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

.expand-speakers-btn:hover { background-color: #163366; }

.read-more-btn {
    margin-top: 0.5rem;
    background-color: #1C3F7F;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.read-more-btn:hover { background-color: var(--uta-light-blue); }


/* ============================================================
   13. SPONSOR PAGE
   ============================================================ */

.section-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ── 13a. Why Sponsor Grid ── */

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: 2rem;
}

.text-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 15px -3px var(--color-shadow);
    border-left: 5px solid var(--uta-light-blue);
    transition: all var(--transition-speed) ease;
}

.text-card:hover {
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.text-card h3 {
    color: var(--uta-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.text-card i {
    color: var(--uta-light-blue);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

/* ── 13c. Partners ── */

.partners-card {
    background-color: var(--uta-blue);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.partners-heading {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--uta-orange);
    letter-spacing: 0.1em;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.presenting-partner-pill {
    display: inline-block;
    background-color: var(--uta-blue);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.partner-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 170px;
    transition: transform var(--transition-speed) ease;
    background-color: var(--light-bg);
    padding: var(--spacing-md);
}

.partner-tile:hover { transform: translateY(-5px); }

.partner-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter var(--transition-speed), opacity var(--transition-speed);
}

.partner-tile:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.sponsors-section-page { margin-bottom: 50px; }


/* ============================================================
   14. LOGISTICS PAGE
   ============================================================ */

/* ── 14a. Hero ── */

.logistics-hero {
    position: relative;
    background: url('img/webpagebackground.webp') no-repeat center center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

.logistics-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 15;
}

.logistics-date {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(3, 28, 130, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logistics-title {
    font-size: 5em;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: var(--uta-blue);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.753);
}

.logistics-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(233, 123, 27, 0.9);
}

/* ── 14b. Location ── */

.logistics-section {
    padding: 60px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.location-details-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-block { margin-bottom: 30px; }

.location-block:last-child { margin-bottom: 0; }

.location-block h3 {
    color: var(--uta-blue);
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-block h3 i { color: var(--uta-orange); }

.location-block p {
    color: var(--text-color);
    line-height: 1.7;
}

.map-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-card h3 {
    color: var(--uta-blue);
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-card h3 i { color: var(--uta-orange); }

.map-embed-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link-note {
    text-align: center;
    color: #666;
    font-size: 0.95em;
}

.map-link-note a {
    color: var(--uta-orange);
    font-weight: 600;
}

/* ── 14c. Parking ── */

.parking-section { background-color: var(--light-bg); }

.parking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.parking-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

.parking-card h3 {
    color: var(--uta-blue);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.parking-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.parking-location {
    font-style: italic;
    color: #666;
}

/* ── 14d. Getting Here ── */

.getting-here-section { background-color: var(--white); }

.getting-here-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ── 14e. Accessibility / FAQ ── */

.accessibility-section { background-color: var(--light-bg); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.faq-item:last-child { margin-bottom: 0; }

.faq-item h3 {
    color: var(--uta-blue);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item a {
    color: var(--uta-orange);
    font-weight: 600;
}


/* ============================================================
   15. THANK YOU PAGE
   ============================================================ */

.thank-you {
    background: linear-gradient(135deg, var(--uta-blue) 0%, var(--uta-light-blue) 100%);
    color: var(--white);
    padding: 80px 30px;
    text-align: center;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you h2 {
    color: var(--white);
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
}

.thank-you p {
    font-size: 1.2em;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

.thank-you + .ticket-inclusion-box {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 50px 20px;
}


/* ============================================================
   16. SUBSCRIBE PAGE
   ============================================================ */

.subscribe-hero {
    background: linear-gradient(135deg, var(--uta-blue) 0%, var(--uta-light-blue) 100%);
    color: var(--white);
    padding: 80px 30px 60px;
    text-align: center;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.subscribe-hero h2 {
    color: var(--white);
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
}

.subscribe-hero p {
    font-size: 1.2em;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

.subscribe-form-container {
    max-width: 600px;
    margin: 60px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--uta-light-blue);
}

.subscribe-form-container form { width: 100%; }

.subscribe-form-container label {
    display: block;
    color: var(--uta-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.subscribe-form-container input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1em;
    font-family: var(--font-family-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 25px;
}

.subscribe-form-container input[type="email"]:focus {
    outline: none;
    border-color: var(--uta-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.subscribe-form-container button[type="submit"] {
    width: 100%;
    padding: 15px 25px;
    background-color: var(--uta-orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.subscribe-form-container button[type="submit"]:hover {
    background-color: #e6600c;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.subscribe-form-container button[type="submit"]:active { transform: translateY(0); }

.subscribe-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--uta-orange);
}

.subscribe-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 1em;
    line-height: 1.6;
}

.subscribe-info i {
    color: var(--uta-orange);
    margin-right: 10px;
}


/* ============================================================
   17. RESPONSIVE / MEDIA QUERIES
   ============================================================ */

/* ── 17a. ≤ 1024px ── */

@media (max-width: 1024px) {
    .hero-section   { padding-top: 200px; }
    .hero-logo      { padding-top: 0; }
    .hero-title     { font-size: 2.5em; }
    .hero-subtitle  { max-width: 800px; }
    .feature-card-grid { gap: 20px; }
    .web-weavers-logo  { max-width: 90%; }
    .ticket-inclusion-box{ margin-left: 80px;}
}

/* ── 17b. ≤ 768px (shared / header / footer) ── */

@media (max-width: 768px) {
    .site-logo { height: 70px; width: auto; }
    .header-content-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links-container {
        margin: 10px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links-container a { margin: 5px 10px; }

    .cta-button {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .footer-links { display: flex; flex-direction: column; }

    .footer-content-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .footer-credit {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-links,
    .social-icons {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer-links a,
    .social-icons { text-align: center; }

    .social-icon { margin: 0 10px; }

    .web-weavers-logo {
        width: 200px;
        max-width: 60%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* ── 17c. ≤ 768px (Home Page) ── */

@media (max-width: 768px) {
    .hero-section   { padding: 250px 15px 40px 15px; height: auto; min-height: 60vh; }
    .hero-logo      { padding-top: 0; width: 80px; }
    .hero-title     { font-size: 1.75em; }
    .hero-tagline   { font-size: 1em; }
    .hero-subtitle  { font-size: 1.1em; max-width: 100%; }
    .hero-content   { padding: 0 15px; }

    .value-propositions { flex-direction: column; align-items: center; }

    .about-section          { flex-direction: column; text-align: center; }
    .about-image            { float: none; width: 100%; margin: 0 0 20px 0; }
    .about-image-container  { order: -1; }

    .feature-card-grid { grid-template-columns: 1fr; gap: 20px; }

    .speaker-teaser-card { flex-direction: column; text-align: center; }
    .speaker-details     { text-align: center; }
    .speaker-photo       { width: 120px; height: 120px; }
    
    .cfre-notice {
        flex-direction: column;
        text-align: center;
    }


    .partners-card  { padding: 1.5rem 1rem; }
    .partners-grid  { gap: 1rem; }
    .partner-tile   { width: 130px; }

    .ticket-inclusion-box { margin-left: 50px; margin-right: 50px; }
    
}

/* ── 17d. ≤ 768px (About Page) ── */

@media (max-width: 768px) {
    .gallery-grid   { grid-template-columns: 1fr; }
    .gallery-photo  { height: 200px; }
    .stat-number    { font-size: 3em; }
    .section-title  { font-size: 2em; }
}

/* ── 17e. ≤ 768px (Registration Page) ── */

@media (max-width: 768px) {
    .form-row       { grid-template-columns: 1fr; }
    #registrationForm { padding: 30px 20px; }
    .welcome-block  { padding: 30px 20px; }
    .welcome-title  { font-size: 1.5em; }
}

/* ── 17f. ≤ 768px (Agenda Page) ── */

/* ── 17g. ≤ 768px (Logistics Page) ── */

@media (max-width: 768px) {
    .logistics-hero     { height: 450px; }
    .logistics-title    { font-size: 3em; }
    .logistics-subtitle { font-size: 1.1em; }
    .location-grid      { grid-template-columns: 1fr; }
    .getting-here-grid  { grid-template-columns: 1fr; }
    .map-embed-wrapper  { height: 300px; }
    .feature-card-grid  { grid-template-columns: repeat(2, 1fr); gap: 200px; }
}

/* ── 17h. ≤ 768px (Thank You Page) ── */

@media (max-width: 768px) {
    .thank-you      { padding: 60px 20px; }
    .thank-you h2   { font-size: 2em; }
    .thank-you p    { font-size: 1.05em; }
    .feature-card-grid { grid-template-columns: 1fr; gap: 100px; }
}

/* ── 17i. ≤ 768px (Subscribe Page) ── */

@media (max-width: 768px) {
    .subscribe-hero     { padding: 60px 20px 40px; }
    .subscribe-hero h2  { font-size: 2em; }
    .subscribe-hero p   { font-size: 1.05em; }
    .subscribe-form-container { margin: 40px 20px; padding: 30px 20px; }
}

/* ── 17j. ≤ 480px ── */

@media (max-width: 480px) {
    .about-section  { padding: 30px 15px; }
    .about-content  { padding: 20px 15px; }
    .hero-title     { font-size: 1.4em; }
    .hero-subtitle  { max-width: 100%; font-size: 1em; }
    .web-weavers-logo { max-width: 60%; }
    .gallery-photo  { height: 180px; }
    .card-grid,
    .team-grid      { grid-template-columns: 1fr; }
    .partners-grid  { gap: 0.75rem; }
    .partner-tile   { width: 110px; }
    .section-title  { font-size: 1.6em; }
}

/* ── 17k. ≥ 768px — Agenda Desktop Table ── */

@media (min-width: 768px) {
    .agenda-table {
        display: block;
        border: 1px solid var(--border-color);
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .agenda-row {
        display: grid;
        grid-template-columns: 200px 1fr;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }

    .agenda-row:last-child   { border-bottom: none; }
    .agenda-row:nth-child(even) { background-color: #f9f9fc; }

    .agenda-time {
        margin-bottom: 0;
        padding-right: 1.5rem;
        text-align: right;
    }

    .agenda-session ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1.5rem;
    }

    .agenda-session ul li { margin-bottom: 0; }
}