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

@font-face {
    font-family: "Boalie";
    src: url("../../../tulizo24/fonts/Boalie.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circular Std Book";
    src: local("Circular Std Book"), local("CircularStd-Book"), url("../../../tulizo24/fonts/CircularStd-Book.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Soft Pink Color Palette */
:root {
    --primary-color: #f6a4c0; /* Soft Pink - Main Brand Color */
    --primary-dark: #e88bab; /* Darker Pink for hover states */
    --accent-color: #fcd5e4; /* Very Light Pink - Subtle accents */
    --secondary-color: #4a5568; /* Dark Slate Gray - For text and contrast */
    --button-color: #f6a4c0; /* Soft Pink for buttons */
    --button-hover: #e88bab; /* Darker Pink on hover */
    --text-color: #2d3748;
    --light-bg: #fef8fa; /* Very pale pink background */
    --white-bg: #ffffff;
    --card-shadow: 0 6px 15px rgba(246, 164, 192, 0.12);
}

body {
    font-family: 'Circular Std Book';
    line-height: 1.6;
    color: var(--text-color);
    background-image: url('/conf/tulizo25/tulizo25_w.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--light-bg);
}

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

/* Header - Soft Pink */
header {
    background: linear-gradient(135deg, #f6a4c0 0%, #fbb5cf 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(246, 164, 192, 0.25);
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, rgba(254, 248, 250, 0.95) 0%, rgba(252, 213, 228, 0.9) 100%);
}

#hero h1 {
    font-family: Boalie;
    font-size: 4em;
    margin-bottom: 5px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(246, 164, 192, 0.2);
}

.tagline {
    font-family: 'Circular Std Book';
    font-style: italic;
    font-size: 1.6em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.date-location {
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(246, 164, 192, 0.3);
}

.primary {
    background: linear-gradient(135deg, #f6a4c0 0%, #fbb5cf 100%);
    color: white;
    border: none;
}

.primary:hover {
    background: linear-gradient(135deg, #e88bab 0%, #f6a4c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(246, 164, 192, 0.4);
}

/* Speakers Section */
#speakers {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white-bg);
}

#speakers h2,
#schedule h2 {
    font-family: Boalie;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.speaker-card {
    background: linear-gradient(135deg, rgba(254, 248, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 164, 192, 0.2);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(246, 164, 192, 0.2);
    border-color: var(--primary-color);
}

.speaker-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--primary-color);
    filter: grayscale(10%);
}

.speaker-card h3 {
    font-family: Boalie;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.speaker-card .title {
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: 500;
}

.speaker-card .bio {
    font-size: 0.95em;
    color: #555;
}

/* Schedule Section */
#schedule {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fef8fa 0%, #fceef4 100%);
}

.schedule-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.schedule-item {
    flex-basis: 280px;
    padding: 25px;
    background-color: var(--white-bg);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    box-shadow: 0 8px 20px rgba(246, 164, 192, 0.2);
    transform: translateX(5px);
}

.schedule-item h4 {
    font-family: 'Circular Std Book';
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    font-size: 1.1em;
}

.schedule-item p {
    margin: 5px 0;
    color: #444;
}

.schedule-item p strong {
    color: var(--primary-color);
}

.note {
    font-size: 1em;
    color: var(--primary-dark);
    margin-top: 20px;
    font-style: italic;
}

/* Registration Section */
#register {
    background-color: var(--white-bg);
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

#register h2 {
    font-family: Boalie;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

#registrationForm {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid rgba(246, 164, 192, 0.3);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(254, 248, 250, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(246, 164, 192, 0.15);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-6 {
    padding: 0 10px;
    width: 100%;
    margin-bottom: 20px;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

.required-note {
    font-size: 0.85em;
    color: var(--primary-color);
    font-weight: normal;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(246, 164, 192, 0.3);
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(246, 164, 192, 0.3);
    outline: none;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group select option[value=""] {
    color: #aaa;
}

.form-group select:required:invalid {
    color: #aaa;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23f6a4c0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.2-5.4H18.6a17.6%2017.6%200%200%200-13.2%205.4%2017.6%2017.6%200%200%200%200%2024.8l128%20128c6.8%206.8%2017.2%206.8%2024%200l128-128c6.8-6.8%206.8-17.2%200-24.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.church-status-group {
    margin-top: 0;
}

.status-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1em;
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-group label {
    display: block;
    cursor: pointer;
    padding: 12px 18px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
    margin: 0;
    background-color: white;
}

.radio-group input[type="radio"]:checked+label {
    background: linear-gradient(135deg, #f6a4c0 0%, #fbb5cf 100%);
    color: white;
    border-color: var(--primary-dark);
}

.session-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px;
    min-width: 22px;
    min-height: 22px;
    accent-color: var(--primary-color);
}

.form-check-label {
    font-weight: normal;
    cursor: pointer;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f6a4c0 0%, #fbb5cf 100%);
    color: white;
    font-size: 1em;
}

/* Separator */
hr {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 50px 0;
    opacity: 0.4;
}

/* Media Queries */
@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
        margin-bottom: 0;
    }

    .row {
        margin-bottom: 20px;
    }

    .status-label {
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        padding-top: 10px;
        justify-content: center;
    }

    nav ul li a {
        padding: 5px 10px;
        font-size: 0.9em;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    #registrationForm {
        padding: 20px;
    }
}