/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #3c3c3b;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content .container {
    max-width: 50%;
    margin-right: 0;
    margin-left: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #34548e;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

a {
    color: #34548e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3c3c3b;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #34548e;
    outline-offset: 2px;
}


/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #34548e, #2a4373);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 84, 142, 0.3);
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 84, 142, 0.4);
    background: linear-gradient(135deg, #2a4373, #1f3259);
}

.cta-button:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(52, 84, 142, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    flex-grow: 1;
    margin: 0 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #34548e;
    text-decoration: none;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Section Anchors */
.section-anchor {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.anchor-bar {
    width: 60px;
    height: 3px;
    background-color: #34548e;
    border-radius: 2px;
}

.anchor-label {
    color: #34548e;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-content {
    color: white;
    text-align: right;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-subtitle-date {
    display: inline-block;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    opacity: 1;
    background-color: #34548e;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0;
    margin: 0.3rem 0;
}

.hero-subtitle-location {
    display: inline;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    opacity: 0.9;
    color: #34548e;
    text-shadow: none;
    margin: 0.3rem 0;
}

.hero-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: 2rem 0;
    max-width: none;
    color: #34548e;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    text-align: right;
}

.hero-cta {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* About Section */
.about-content {
    max-width: none;
    margin: 0;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: none;
    text-align: left;
}

/* Program Section */
.program-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.program-days {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 769px) {
    .program-days {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.program-day {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-day h3 {
    color: #34548e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f2f6;
}

.program-content {
    padding: 1rem 0;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f2f6;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
    line-height: 1.5;
}

.program-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #34548e;
    position: absolute;
    left: 0;
    top: 0.7em;
    border-radius: 0;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-note {
    margin-top: 2rem;
    color: #666;
    text-align: center;
}

/* Speaker Section */
.speakers {
    background: white;
}

.speakers-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.speaker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (min-width: 769px) {
    .speaker-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.speaker-card {
    background: #f8f9fa;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.speaker-card:hover {
    transform: translateY(-5px);
}

.speaker-image {
    position: relative;
    width: 250px;
    min-width: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.image-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    color: black;
    background-color: rgba(240, 240, 240, 0.9);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 0;
    margin: 0;
}

.speaker-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-role {
    color: #34548e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.speakers-more {
    text-align: center;
    color: #666;
    margin-top: 2rem;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.activity-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.activity-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #34548e;
    position: absolute;
    left: 0;
    top: 0.7em;
    border-radius: 0;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.location-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0;
    border-left: 4px solid #34548e;
}

.location-info-box h3 {
    color: #34548e;
    margin-bottom: 1rem;
}

.location-info-box p {
    margin-bottom: 0.75rem;
    max-width: none;
}

.location-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Registration Section */
.registration {
    background: white;
    color: #3c3c3b;
}

.registration h2 {
    color: #34548e;
}

.registration-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.registration-content {
    text-align: center;
}

.registration-cta {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.registration-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(5px);
}

.registration-info p {
    margin-bottom: 0.5rem;
    max-width: none;
}

.included-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-services li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.included-services li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: #34548e;
    font-weight: bold;
}

.included-services li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0;
    margin: 2rem 0;
    text-align: center;
    border-left: 4px solid #34548e;
    border: 1px solid rgba(52, 84, 142, 0.1);
}

.pricing-highlight h3 {
    margin-bottom: 0.5rem;
    color: #34548e;
}

.pricing-highlight p {
    color: #3c3c3b;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 481px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-option {
    background: white;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f1f2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 84, 142, 0.2);
    border-color: #34548e;
}

.pricing-option h4 {
    margin-bottom: auto;
    padding-bottom: 1.5rem;
    color: #3c3c3b;
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #34548e;
    margin-bottom: 0.25rem;
    margin-top: auto;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
    color: #3c3c3b;
}

.room-info {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: #3c3c3b;
}

.participant-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(60, 60, 59, 0.2);
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: none;
    color: #3c3c3b;
}

.important-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.note-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(60, 60, 59, 0.1);
}

.note-box.cancellation {
    border-left: 4px solid #a8a8a7;
}

.note-box.urgency {
    border-left: 4px solid #34548e;
}

.note-box h4 {
    margin-bottom: 0.75rem;
    color: #3c3c3b;
    font-size: 1rem;
}

.note-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: none;
    color: #3c3c3b;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-person {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    background: #f8f9fa;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-role {
    color: #34548e;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #3c3c3b;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-legal p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #a8a8a7;
    max-width: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #a8a8a7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta .cta-button {
    padding: 1rem 1.5rem;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    .nav-menu {
        margin: 0 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-days {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    /* Show hamburger menu and hide regular menu */
    .hamburger {
        display: flex;
    }
    
    /* Hide CTA button on mobile to make room for hamburger */
    .nav-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 80px 0 20px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        display: block;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 0;
        width: 100%;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #34548e;
    }
    
    .nav-cta {
        margin: 20px 30px 0 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        text-align: center;
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        text-align: center;
        justify-content: center;
        align-items: center;
        padding-right: 0;
    }
    
    .hero-content .container {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Ensure all hero elements are centered on mobile */
    .hero-title,
    .hero-brand,
    .hero-tagline,
    .hero-subtitle-date,
    .hero-subtitle-location,
    .hero-intro {
        text-align: center;
    }
    
    /* Global mobile text overflow fixes */
    p, h1, h2, h3, h4, h5, h6, li, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        max-width: 100%;
    }
    
    /* Hero section specific fixes */
    .hero-title, .hero-tagline, .hero-subtitle-date, .hero-subtitle-location {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    .hero-intro {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        max-width: 100%;
    }
    
    /* Location section mobile fixes */
    .location-content {
        gap: 1.5rem;
    }
    
    .location-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        max-width: 100%;
    }
    
    .location-info-box {
        padding: 1.5rem;
        margin: 0;
    }
    
    .location-info-box p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    .hero-logo {
        height: 1em;
        /* Force line break after logo on mobile and center it */
        display: block;
        margin: 0 auto 0.1em;
    }
    
    /* Fix speaker card layout for mobile */
    .speaker-card {
        flex-direction: column;
    }
    
    .speaker-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }
    
    .speaker-info {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-brand {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-intro {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .program-days {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-day {
        padding: 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 0.75rem;
    }
    
    .speaker-grid {
        grid-template-columns: 1fr;
    }
    
    .speaker-card {
        flex-direction: column;
    }
    
    .speaker-image {
        width: 100%;
        height: 300px;
    }
    
    .contact-person {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-image {
        justify-self: center;
        width: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sticky-cta {
        display: block;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .hero-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        transform: translateX(100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Prevent horizontal overflow on small devices */
    .nav-container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* Extra small devices (320px and smaller) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0 10px;
    }
    
    /* CTA already hidden at 968px breakpoint */
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
    
    /* Ensure no content causes horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Extra aggressive text breaking for very small screens */
    p, li, span {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    /* Keep heading hierarchy but still prevent overflow */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    /* Hero title adjustments for very small screens */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-subtitle-date,
    .hero-subtitle-location {
        font-size: 1.1rem;
    }
    
    .hero-intro {
        font-size: 0.95rem;
    }
    
    /* Extra mobile fixes for location text */
    .location-text p,
    .location-info-box p {
        font-size: 1rem;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .location-info-box {
        padding: 1rem;
    }
    
    html, body {
        overflow-x: hidden;
    }
}

/* Focus and Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    .nav,
    .sticky-cta,
    .modal {
        display: none;
    }
    
    section {
        break-inside: avoid;
        padding: 1rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Impressum Styles */
.impressum-section {
    padding: 8rem 0 4rem;
    background: white;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h1 {
    color: #34548e;
    margin-bottom: 2rem;
}

.impressum-content h2 {
    color: #34548e;
    margin: 2rem 0 1rem;
}

.impressum-content h3 {
    color: #3c3c3b;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.impressum-content h4 {
    color: #34548e;
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.address-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0;
}

.contact-details,
.legal-info,
.management,
.audit-association,
.whistleblower,
.packaging-register,
.liability-disclaimer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0;
}

.liability-disclaimer {
    background: rgba(52, 84, 142, 0.05);
    border-left: 4px solid #34548e;
}

.impressum-content a {
    color: #34548e;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* Optimized styles moved from inline CSS */

/* Force registration section style override */
.registration {
    background: white;
    color: #3c3c3b;
}
.registration h2 {
    color: #34548e;
}
.registration .note-box {
    background: #f8f9fa;
    color: #3c3c3b;
}
.registration .note-box h4,
.registration .note-box p {
    color: #3c3c3b;
}
.registration .pricing-option {
    background: white;
    border: 2px solid #f1f2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.registration .pricing-option h4 {
    color: #3c3c3b;
}
.registration .pricing-highlight {
    background: #34548e;
    border: 1px solid rgba(52, 84, 142, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.registration .pricing-highlight h3 {
    color: white;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 100%;
}
.registration .pricing-highlight p {
    color: white;
    text-align: center;
    width: 100%;
}

/* Simple Footer */
.footer {
    background: #34548e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-content-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.footer-logo-section img {
    padding-bottom: 1.25rem;
}

.footer-logo-section .footer-back-link {
    padding-top: 1.25rem;
}

.footer-logo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-back-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-back-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-content-simple .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.footer-content-simple .footer-links a:first-child {
    padding-bottom: 0.75rem;
}

.footer-content-simple .footer-links a:last-child {
    padding-top: 0.75rem;
}

.footer-content-simple .footer-links::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-content-simple .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-content-simple .footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Accordion Styling */
.accordion {
    background: #f8f9fa;
    border: 2px solid #34548e;
    border-radius: 0;
    margin: 1.5rem auto;
    overflow: hidden;
    max-width: 600px;
}

.accordion summary {
    background: #34548e;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
    text-align: center;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary:hover {
    background: #2a4373;
}

.accordion[open] summary {
    background: #2a4373;
}

.accordion summary::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

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

.accordion .included-services {
    background: white;
    margin: 0;
    padding: 1.5rem;
}

/* Modern Design Upgrades */
.cta-button {
    background: linear-gradient(135deg, #cb7283, #b85b73, #a54763);
    border-radius: 0;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 25px rgba(203, 114, 131, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(203, 114, 131, 0.6);
    background: linear-gradient(135deg, #d47a8f, #cb7283, #b85b73);
}

.hero {
    background: linear-gradient(135deg, rgba(52, 84, 142, 0.1), rgba(60, 60, 59, 0.05));
}

.hero-background img {
    filter: none;
}

.hero-title {
    text-shadow: none;
    color: #34548e;
}

.hero-subtitle {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-brand {
    color: #34548e;
}

.hero-logo {
    height: 1.2em;
    vertical-align: middle;
    margin-right: 0.3em;
}

/* Mobile override for hero logo centering */
@media (max-width: 768px) {
    .hero-logo {
        height: 1em !important;
        display: block !important;
        margin: 0 auto 0.1em !important;
        vertical-align: initial !important;
    }
}

/* Desktop - logo above text, right-aligned */
@media (min-width: 769px) {
    .hero-logo {
        display: block !important;
        margin: 0 0 0.1em auto !important;
        height: 1.2em !important;
    }
}

.hero-tagline {
    background-color: #34548e;
    padding: 0.4rem 1rem;
    border-radius: 0;
    display: inline-block;
    margin: 0.5rem 0;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.speaker-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(203, 114, 131, 0.25);
    border: 2px solid rgba(203, 114, 131, 0.3);
}

.program-day {
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #34548e;
    text-shadow: none;
}


section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(52, 84, 142, 0.03) 0%, transparent 50%), 
               radial-gradient(circle at 80% 20%, rgba(60, 60, 59, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.gallery-grid img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.note-box {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 84, 142, 0.1);
}


/* Program Icons */
.event-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2em;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.timeline-item:hover .event-icon {
    transform: scale(1.2);
    opacity: 1;
}

.timeline-item {
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(52, 84, 142, 0.05);
    padding-left: 1rem;
    border-radius: 0;
}

/* Luxury Showcase */
.luxury-showcase {
    margin: 3rem 0;
}

.showcase-hero {
    margin-bottom: 2rem;
}

.showcase-hero-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.showcase-hero:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: white;
}

.showcase-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.showcase-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.showcase-features {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.large {
    grid-row: span 2;
    height: 580px;
}

.feature-card.wide {
    grid-column: 2 / -1;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover img {
    transform: scale(1.08);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2.5rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-overlay {
    transform: translateY(0);
}

.feature-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Contact Card Styling */
.contact-person-wide {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 2rem 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    width: 140px;
}

.contact-person-wide .contact-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-person-wide .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-person-wide .contact-company {
    text-align: center;
}

.contact-person-wide .company-logo {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-person-wide .contact-company a:hover .company-logo {
    transform: scale(1.05);
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-left: 1rem;
}

.contact-right h3 {
    color: #34548e;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.contact-role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-right p {
    margin: 0.5rem 0;
    color: #3c3c3b;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-right a {
    color: #34548e;
    text-decoration: none;
}

.contact-right a:hover {
    text-decoration: underline;
}

.contact-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex-grow: 1;
}

.contact-company {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f2f6;
}

.company-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-company a:hover .company-logo {
    transform: scale(1.05);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .footer-content-simple {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content-simple .footer-links::before {
        display: none;
    }
    
    .footer-content-simple .footer-links {
        gap: 1.5rem;
    }
    
    .footer-content-simple .footer-links a:first-child,
    .footer-content-simple .footer-links a:last-child {
        padding: 0;
    }

    .showcase-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card.large,
    .feature-card.wide {
        grid-column: auto;
        grid-row: auto;
        height: 280px;
    }
    
    .showcase-hero-image {
        height: 300px;
    }

    .contact-person-wide {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-left {
        align-items: center;
    }
    
    .contact-person-wide .contact-image {
        width: 100px;
        height: 100px;
    }
    
    .contact-person-wide .company-logo {
        max-height: 30px;
    }
    
    .footer-content-simple {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo-section {
        order: 1;
    }
    
    .footer-links {
        order: 2;
        gap: 1rem;
    }
}