/* Basic Reset & Body Styles */
body {
    font-family: "EB Garamond", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    text-align: center;
}

p {
    font-size: 2em;
    margin: 0;
    letter-spacing: 2px;
}

.container {
    color: #fff;
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0;
    padding-bottom: 0px;
    font-size: 2.5em;
}

header p {
    font-size: 2em;
    margin-bottom: 0px;
}

header nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

header nav li {
    display: inline;
    padding: 0 15px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1em;
}

header nav a:hover {
    color: #77aaff;
}

/* General Section Styling */
section {
    color: #fff;
    padding: 40px 0;
    background-color: #000;
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 4em;
}

/* Hero Section */

.hero {
    background: #000 url(images/logo@3x.png) no-repeat center;
    background-size: contain;
    color: #000;
    text-align: center;
    height: 600px;
}

.hero h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 10px;
}

.hero .date,
.hero .time,
.hero .location-text {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #77aaff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #5588cc;
}

/* Schedule Section */
.schedule-item {
    background: #111111;
    border-left: 5px solid #77aaff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
}

.schedule-item h3 {
    margin-top: 0;
    color: #fff;
}

/* Speakers Section */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.speaker-card {
    background: #111111;
    padding: 20px;
    border-radius: 5px;
}

.speaker-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #77aaff;
}

.speaker-card h3 {
    margin-top: 0;
    color: #fff;
}

/* Location Section */
.map-placeholder {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    background-color: #eee;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    overflow: hidden; /* Important for embedded iframes */
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Registration Section */
.register form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: #111111;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.register .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: .5em;
}

footer .social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer .social-links a:hover {
    color: #77aaff;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    header p {
        line-height: 1.15;
    }

    .container {
        width: 95%;
    }

    header nav li {
        display: block;
        padding: 5px 0;
    }

    .hero {
        padding: 60px 0;
        height: 200px;
    }

    .hero h2 {
        font-size: 2.2em;
    }

    .hero .date,
    .hero .time,
    .hero .location-text {
        font-size: 1.2em;
    }

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

    img {
        width: 100%;
    }
}