/* Vodafone Event Page Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vodafone Rg', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    line-height: 26px;
    color: #2E2E2E;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Vodafone Colors */
:root {
    --vodafone-red: #E60000;
    --vodafone-dark-red: #820000;
    --vodafone-secondary: #B40001;
    --vodafone-text: #2E2E2E;
    --vodafone-gray: #4A4D4E;
    --vodafone-gray-light: #666666;
    --vodafone-gray-lighter: #999999;
    --vodafone-bg-light: #F4F4F4;
    --vodafone-white: #FFFFFF;
}

.event-page {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1108px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-family: 'Vodafone Rg', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--vodafone-text);
}

h2 {
    font-family: 'Vodafone Rg', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--vodafone-text);
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
}

p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 9px 25px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--vodafone-red);
    color: var(--vodafone-white);
}

.btn-primary:hover {
    background-color: var(--vodafone-dark-red);
}

.btn-secondary {
    background-color: var(--vodafone-white);
    color: var(--vodafone-text);
    border: 1px solid var(--vodafone-red);
}

.btn-secondary:hover {
    background-color: var(--vodafone-bg-light);
}

/* Top Navigation Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: var(--vodafone-white);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.lang-bar {
    height: 30px;
    background-color: #2E2E2E;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-active {
    color: #ffffff;
    font-weight: 700;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.balken {
    display: block;
    width: 100%;
    height: 30px;
}

.top-content {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.top-container {
    display: flex;
    align-items: center;
    gap: 78px;
    width: 1100px;
    padding: 0 20px;
    margin: 20px 0;
}

.vf-logo {
    height: 45px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 24px;
    color: var(--vodafone-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--vodafone-red);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 105px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 451px;
    overflow: hidden;
    background-color: var(--vodafone-dark-red);
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-img1 {
    left: 0;
}

.bg-img2 {
    right: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(130, 0, 0, 1) 13%, rgba(130, 0, 0, 0) 31%, rgba(130, 0, 0, 0) 51%, rgba(130, 0, 0, 1) 87%);
}

.hero-content {
    position: relative;
    width: 1108px;
    max-width: 90%;
    margin-top: 331px;
    background-color: var(--vodafone-white);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3);
    padding: 50px 50px 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-intro .btn-primary {
    width: 195px;
    text-align: center;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-intro p {
    max-width: 1000px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-info .event-title {
    font-weight: 700;
}

.event-description {
    max-width: 1000px;
}

/* Agenda Section */
.agenda-section {
    padding: 80px 246px 100px;
    background-color: var(--vodafone-white);
}

.agenda-table {
    max-width: 840px;
}

.agenda-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--vodafone-red);
}

.agenda-item .time {
    width: 164px;
    flex-shrink: 0;
    font-weight: 700;
}

.agenda-item .description {
    flex: 1;
}

/* Registration Section */
.registration-section {
    padding: 80px 246px;
    background-color: #E0E0E0;
}

.section-intro {
    font-weight: 700;
    margin-bottom: 30px;
}

.registration-form {
    max-width: 1050px;
}

.form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-small {
    max-width: 145px;
}

.form-group-medium {
    max-width: 334px;
}

.form-group label {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--vodafone-text);
}

.required {
    color: var(--vodafone-red);
}

.form-control,
.form-control select {
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    border: 1px solid var(--vodafone-gray-light);
    border-radius: 3px;
    background-color: var(--vodafone-white);
    font-family: 'Vodafone Rg', sans-serif;
}

select.form-control {
    appearance: none;
    background-image: url('../images/ic_arrow_down-arrow1.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-control:focus {
    outline: none;
    border-color: var(--vodafone-red);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.form-check-input {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-check-label {
    font-size: 18px;
    line-height: 24px;
}

.privacy-link {
    color: var(--vodafone-text);
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Info Section */
.info-section {
    padding: 80px 246px;
    background-color: var(--vodafone-white);
}

.info-text {
    max-width: 840px;
}

.info-text ul {
    margin: 15px 0 15px 25px;
}

.info-text li {
    margin-bottom: 8px;
}

/* Companies Section */
.companies-section {
    padding: 80px 248px 100px;
    background-color: var(--vodafone-secondary);
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

.companies-section h2 {
    color: var(--vodafone-white);
    max-width: 730px;
    margin-bottom: 30px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.company-box {
    background-color: var(--vodafone-white);
    padding: 50px;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-logo {
    width: 250px;
    height: 70px;
    margin-bottom: 10px;
    object-fit: contain;
    object-position: left center;
}

.company-logo-placeholder {
    background-color: var(--vodafone-bg-light);
}

.company-box h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.company-box p {
    font-size: 20px;
    line-height: 26px;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 246px;
    background-color: var(--vodafone-white);
}

.faq-list {
    max-width: 840px;
}

.faq-item {
    border-top: 1px solid var(--vodafone-gray-lighter);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--vodafone-red);
    cursor: pointer;
    gap: 20px;
}

.faq-toggle {
    font-size: 30px;
    font-weight: 400;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 10px 0 20px;
    max-width: 760px;
}

/* Location Section */
.location-section {
    display: flex;
    flex-direction: column;
}

.location-info {
    padding: 80px 246px;
    background-color: var(--vodafone-gray);
    color: var(--vodafone-white);
}

.location-info h2 {
    color: var(--vodafone-white);
}

.location-images {
    margin-bottom: 20px;
}

.location-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: 400px;
    max-width: 840px;
    margin-bottom: 20px;
}

.loc-img {
    overflow: hidden;
    border-radius: 4px;
}

.loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-img-1 {
    width: 100%;
    height: 100%;
}

.location-text {
    max-width: 898px;
}

.location-text p {
    color: var(--vodafone-white);
    margin-bottom: 10px;
}

.link-vodafone {
    color: var(--vodafone-red);
    text-decoration: none;
}

.map-container {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 201px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 82px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 0 40px;
    background-color: var(--vodafone-text);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.75;
}

.social-link img {
    width: 30px;
    height: 30px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vodafone-white);
}

.footer-links a {
    color: var(--vodafone-white);
    text-decoration: none;
    font-size: 20px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--vodafone-white);
    font-size: 20px;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid var(--vodafone-gray-lighter);
    width: 1108px;
    max-width: 90%;
}

.footer-copyright p {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    color: var(--vodafone-white);
    margin: 0;
}

/* Danke Section */
.danke-section {
    display: flex;
    justify-content: center;
    padding: 120px 20px 100px;
    min-height: 70vh;
}

.danke-container {
    max-width: 740px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.danke-icon {
    margin-bottom: 10px;
}

.danke-container h1 {
    font-size: 40px;
    color: var(--vodafone-text);
}

.danke-greeting {
    font-size: 22px;
    font-weight: 700;
    color: var(--vodafone-text);
    margin: 0;
}

.danke-text {
    font-size: 20px;
    line-height: 26px;
    color: var(--vodafone-text);
    margin: 0;
}

.danke-event-info {
    width: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    overflow: hidden;
    margin: 10px 0;
}

.danke-info-item {
    display: flex;
    gap: 20px;
    padding: 16px 24px;
    border-bottom: 1px solid #E0E0E0;
    text-align: left;
    font-size: 18px;
}

.danke-info-item:last-child {
    border-bottom: none;
}

.danke-info-label {
    font-weight: 700;
    min-width: 140px;
    color: var(--vodafone-red);
}

.danke-subtext {
    font-size: 18px;
    line-height: 26px;
    color: var(--vodafone-gray);
    margin: 0;
}

.danke-btn {
    margin-top: 10px;
    min-width: 220px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-container {
        width: 100%;
        gap: 40px;
    }

    .hero-content {
        width: 90%;
        padding: 40px;
    }

    .agenda-section,
    .registration-section,
    .info-section,
    .faqs-section,
    .companies-section,
    .location-info {
        padding: 60px 40px;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-link {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .form-group-small,
    .form-group-medium {
        max-width: 100%;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .location-img-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .loc-img {
        height: 250px;
    }

    .agenda-item {
        flex-direction: column;
        gap: 10px;
    }

    .agenda-item .time {
        width: 100%;
    }
}
