body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* OLD HEADER STYLE (remove or comment out)



header {
  background-color: #004080; /* Dark blue
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 2px;
  text-transform: uppercase;
}
 */

 .hero-header {
     background-image: url("ATOMION_2026LOGO.png"); /* <-- use your image name */
     background-size: cover;
     background-position: center;
     height: 250px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
 }

 .hero-header h1 {
     font-size: 2.5rem;
     font-weight: bold;
     background-color: rgba(0, 0, 0, 0.4);
     padding: 10px 20px;
     border-radius: 10px;
     text-transform: uppercase;
 }


nav {
  background-color: #333;
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00ccff; /* Light blue */
}

section {
  padding: 20px;
}

section h2 {
  font-size: 2em;
  border-bottom: 2px solid #004080;
  padding-bottom: 10px;
}

footer {
  background-color: #004080;
  text-align: center;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  margin: 0;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

#location a {
  color: #b30000; /* red like SBU’s colors */
  text-decoration: none;
  font-weight: 500;
}

#location a:hover {
  text-decoration: underline;
}

.location-img {
    width: 50%; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Permite centrar la imagen */
    margin: 20px auto; /* Centra la imagen horizontalmente y añade un margen superior e inferior */
    border-radius: 8px; /* Bordes redondeados opcionales */
    /* Opcional: puedes agregar sombras o bordes */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Añade una sombra a la imagen */
}

.center {
   width: 300;
   height: 300;
   display: block;
   margin-left: auto;
   margin-right: auto;
}


/* ================= Participants ================= */

/* Speakers section layout */

.speakers-layout {
    display: flex;
    gap: 40px;   /* was 40px */
}


.speakers-list ul {
    font-size: 1.1em;   /* increase size */
    line-height: 1.2;   /* improves readability */
}

.speakers-flyer {
    flex: 1;
    text-align: center;
}

.speakers-flyer img {
    max-width: 55%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 204, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 900px) {
    .speakers-layout {
        flex-direction: column;
        align-items: center;
    }

    .speakers-flyer {
        margin-top: 30px;
    }
}





/* Estilos para la sección de Organizadores */
.organizers-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan si no hay suficiente espacio */
    justify-content: space-around; /* Espacia equitativamente las imágenes */
    padding-top: 20px;
}

.organizer {
    text-align: center;
    margin: 10px; /* Añade un margen para separar los elementos */
}

.organizer img {
    width: 200px; /* Ajusta el tamaño de las fotos */
    height: auto;
    border-radius: 50%; /* Hace las imágenes circulares */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Añade una sombra a las imágenes */
    margin-bottom: 10px;
}

.organizer p {
    margin: 5px 0;
    font-weight: bold;
}

.affiliation {
    display: block;
    margin-top: 5px; /* Espacio entre el nombre y la afiliación */
    color: #00ccff; /* Color para el enlace */
    text-decoration: none; /* Elimina el subrayado del enlace */
}

.affiliation:hover {
    text-decoration: underline; /* Subraya el enlace al pasar el ratón */
}


/* ================= SCHEDULE SECTION ================= */

#schedule {
    margin-bottom: 80px;
}

.day-block {
    margin-bottom: 40px;
}

.day-block h3 {
    color: #00ccff;
    margin-bottom: 15px;
    border-left: 4px solid #004080;
    padding-left: 10px;
}

.schedule-table {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.schedule-table .row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
}

.schedule-table .row:last-child {
    border-bottom: none;
}

.schedule-table .row:hover {
    background-color: #2a2a2a;
}

.schedule-table .time {
    font-weight: bold;
    color: #00ccff;
    min-width: 120px;
}

/* Break styling */
.schedule-table .break {
    background-color: #1a1a1a;
    font-style: italic;
    color: #aaa;
}

/* Highlighted session header styling */
.schedule-table .highlight {
    background-color: #111;   /* slightly darker than break */
    font-weight: bold;
    color: #00ccff;           /* your sky blue accent */
}

/* Session styling */
.schedule-table .session {
    border-left: 3px solid #004080;
}

/* Responsive */
@media (max-width: 600px) {
    .schedule-table .row {
        flex-direction: column;
        gap: 5px;
    }
}


/* Collapsible day styling */

.day-block {
    margin-bottom: 30px;
    background-color: #111;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #222;
}

.day-block summary {
    cursor: pointer;
    padding: 15px 20px;
    font-size: 1.3em;
    font-weight: bold;
    color: #00ccff;
    background-color: #1a1a1a;
    list-style: none;
    outline: none;
    transition: background-color 0.2s ease;
}

.day-block summary:hover {
    background-color: #222;
}

/* Remove default arrow */
.day-block summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow */
.day-block summary::after {
    content: " ▼";
    float: right;
    transition: transform 0.2s ease;
}

.day-block[open] summary::after {
    transform: rotate(180deg);
}







/* Otros estilos */

section {
  padding: 20px;
}

/* Estilos para la sección de Inscripciones */
#inscriptions form {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 65px;
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

#inscriptions label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#inscriptions input[type="text"],
#inscriptions input[type="email"] {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

#inscriptions button[type="submit"] {
    background-color: #004080; /* Dark blue */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

#inscriptions button[type="submit"]:hover {
    background-color: #003366; /* Slightly darker blue */
}

/* Otros estilos */

.intro {
    padding: 20px;
    background-color: #222; /* Fondo oscuro para resaltar la introducción */
    color: #fff; /* Color del texto */
    text-align: center;
    margin: 20px auto; /* Centra el contenido */
    max-width: min(80%,800px); /* Ancho máximo para mantener el contenido bien estructurado */
    border-radius: 8px; /* Bordes redondeados opcionales */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Añade una sombra para destacar el contenido */
}

.intro p {
    margin: 0;
    font-size: 1.2em; /* Ajusta el tamaño del texto */
}
