/* ============================================
   UNIQUE PROJECT: Heidelberg-Warranty-Solutions.com
   
   CSS ARCHITECTURE: Component-based with hws- prefix
   COLOR PALETTE: Heidelberg Castle Theme (Deep Purple, Gold, Teal)
   EFFECT: Animated mesh gradient with floating orbs
   TYPOGRAPHY: Modern sans-serif with German support
   BUTTONS: Glassmorphism with glow effects
   ============================================ */

:root {
    /* Heidelberg Castle Theme Colors */
    --heidelberg-deep-purple: #2d1b4e;
    --heidelberg-gold: #d4a574;
    --heidelberg-teal: #4a9b8e;
    --heidelberg-slate: #3a3f5a;
    --heidelberg-cream: #f5f1e8;
    --heidelberg-burgundy: #8b4a6b;
    --heidelberg-charcoal: #1a1a2e;
    --heidelberg-lavender: #9d8cc7;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing Scale */
    --space-unit: 1rem;
    --space-xs: calc(var(--space-unit) * 0.5);
    --space-sm: calc(var(--space-unit) * 1);
    --space-md: calc(var(--space-unit) * 1.5);
    --space-lg: calc(var(--space-unit) * 2);
    --space-xl: calc(var(--space-unit) * 3);
    --space-xxl: calc(var(--space-unit) * 4);
    
    /* Transitions */
    --ease-quick: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--heidelberg-charcoal);
    background-color: var(--heidelberg-cream);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background with Floating Particles */
.hws-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--heidelberg-deep-purple) 0%, var(--heidelberg-slate) 50%, var(--heidelberg-burgundy) 100%);
    background-size: 300% 300%;
    animation: hws-mesh-gradient 20s ease infinite;
    overflow: hidden;
}

.hws-bg-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    animation: hws-float-orb 15s ease-in-out infinite;
    opacity: 0.6;
}

.hws-bg-particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hws-bg-particle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.hws-bg-particle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 50%;
    animation-delay: 4s;
}

.hws-bg-particle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.hws-bg-particle:nth-child(5) {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 80%;
    animation-delay: 8s;
}

.hws-bg-particle:nth-child(6) {
    width: 160px;
    height: 160px;
    top: 20%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes hws-mesh-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes hws-float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Header Navigation */
.hws-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(45, 27, 78, 0.1);
    transition: all var(--ease-smooth);
}

.hws-primary-nav {
    padding: var(--space-md) 0;
}

.hws-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hws-brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hws-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hws-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    text-decoration: none;
}

.hws-brand-logo a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: transform var(--ease-smooth);
}

.hws-brand-logo a:hover {
    transform: scale(1.05);
}

.hws-nav-list {
    display: flex;
    list-style: none;
    gap: 0px;
    align-items: center;
}

.hws-nav-element {
    position: relative;
}

.hws-nav-anchor {
    color: var(--heidelberg-slate);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all var(--ease-smooth);
    position: relative;
    display: block;
}

.hws-nav-anchor::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--heidelberg-gold);
    transform: translateX(-50%);
    transition: width var(--ease-smooth);
}

.hws-nav-anchor:hover,
.hws-nav-anchor.hws-active-link {
    color: var(--heidelberg-deep-purple);
}

.hws-nav-anchor:hover::before,
.hws-nav-anchor.hws-active-link::before {
    width: 80%;
}

/* Mobile Toggle Button */
.hws-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.hws-toggle-bar {
    width: 28px;
    height: 3px;
    background: var(--heidelberg-deep-purple);
    border-radius: 3px;
    transition: all var(--ease-smooth);
}

.hws-mobile-toggle[aria-expanded="true"] .hws-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hws-mobile-toggle[aria-expanded="true"] .hws-toggle-bar:nth-child(2) {
    opacity: 0;
}

.hws-mobile-toggle[aria-expanded="true"] .hws-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
.hws-page-content {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hws-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hws-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hws-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8) 0%, rgba(58, 63, 90, 0.6) 100%);
}

.hws-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-lg);
    position: relative;
    z-index: 1;
}

.hws-hero-text-content {
    max-width: 700px;
    animation: hws-fade-in-up 1s ease-out;
}

.hws-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--heidelberg-cream);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hws-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 241, 232, 0.95);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.hws-hero-cta-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--heidelberg-gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hws-hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Buttons */
.hws-primary-button {
    display: inline-block;
    padding: 15px 16px;
    background: linear-gradient(135deg, var(--heidelberg-gold) 0%, var(--heidelberg-burgundy) 100%);
    color: var(--heidelberg-cream);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    transition: all var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.hws-primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hws-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.hws-primary-button:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Content Wrapper */
.hws-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 16px;
}

/* Section Header */
.hws-section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.hws-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.hws-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--heidelberg-gold), var(--heidelberg-teal));
    border-radius: 2px;
}

.hws-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--heidelberg-slate);
    max-width: 700px;
    margin: var(--space-md) auto 0;
    line-height: 1.7;
}

/* Events Section */
.hws-events-section {
    padding: var(--space-xxl) 0;
    background: var(--heidelberg-cream);
}

.hws-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.hws-event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
    transition: all var(--ease-smooth);
    position: relative;
}

.hws-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 27, 78, 0.2);
}

.hws-card-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hws-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease-smooth);
}

.hws-event-card:hover .hws-card-image {
    transform: scale(1.1);
}

.hws-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.7) 100%);
}

.hws-card-body {
    padding: var(--space-lg);
}

.hws-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    margin-bottom: var(--space-sm);
}

.hws-card-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--heidelberg-slate);
}

.hws-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hws-card-description {
    color: var(--heidelberg-slate);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.hws-card-button {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--heidelberg-deep-purple);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--ease-smooth);
    text-align: center;
    width: 100%;
}

.hws-card-button:hover {
    background: var(--heidelberg-gold);
    transform: scale(1.05);
}

/* How To Section */
.hws-howto-section {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--heidelberg-cream) 0%, white 100%);
}

.hws-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.hws-step-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 27, 78, 0.1);
    transition: all var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.hws-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--heidelberg-gold), var(--heidelberg-teal));
    transform: scaleY(0);
    transition: transform var(--ease-smooth);
}

.hws-step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(45, 27, 78, 0.15);
}

.hws-step-item:hover::before {
    transform: scaleY(1);
}

.hws-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--heidelberg-gold), var(--heidelberg-burgundy));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.hws-step-content {
    flex: 1;
}

.hws-step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    margin-bottom: var(--space-sm);
}

.hws-step-text {
    color: var(--heidelberg-slate);
    line-height: 1.7;
}

/* About Section */
.hws-about-section {
    padding: var(--space-xxl) 0;
    background: var(--heidelberg-cream);
}

.hws-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.hws-about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.2);
}

.hws-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease-smooth);
}

.hws-about-image-wrapper:hover .hws-about-image {
    transform: scale(1.05);
}

.hws-about-text {
    padding: var(--space-lg);
}

.hws-about-text p {
    color: var(--heidelberg-slate);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.hws-about-text strong {
    color: var(--heidelberg-deep-purple);
    font-weight: 700;
}

/* FAQ Section */
.hws-faq-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, white 0%, var(--heidelberg-cream) 100%);
}

.hws-faq-list {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

.hws-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: var(--space-md);
    box-shadow: 0 5px 15px rgba(45, 27, 78, 0.1);
    overflow: hidden;
    transition: all var(--ease-smooth);
}

.hws-faq-item:hover {
    box-shadow: 0 8px 25px rgba(45, 27, 78, 0.15);
}

.hws-faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heidelberg-deep-purple);
    transition: all var(--ease-smooth);
}

.hws-faq-question:hover {
    color: var(--heidelberg-gold);
}

.hws-faq-question-text {
    flex: 1;
}

.hws-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--ease-smooth);
}

.hws-faq-question[aria-expanded="true"] .hws-faq-icon {
    transform: rotate(180deg);
}

.hws-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ease-smooth), padding var(--ease-smooth);
    padding: 0 var(--space-lg);
}

.hws-faq-question[aria-expanded="true"] + .hws-faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.hws-faq-answer p {
    color: var(--heidelberg-slate);
    line-height: 1.7;
}

/* Footer */
.hws-site-footer {
    background: var(--heidelberg-charcoal);
    color: var(--heidelberg-cream);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.hws-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.hws-footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hws-footer-title,
.hws-footer-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heidelberg-gold);
    margin-bottom: var(--space-sm);
}

.hws-footer-text {
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.7;
}

.hws-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hws-footer-link {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    transition: all var(--ease-smooth);
    position: relative;
    padding-left: var(--space-md);
}

.hws-footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: transform var(--ease-smooth);
}

.hws-footer-link:hover {
    color: var(--heidelberg-gold);
    padding-left: calc(var(--space-md) + 5px);
}

.hws-footer-link:hover::before {
    transform: translateX(5px);
}

.hws-footer-bottom {
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding-top: var(--space-lg);
    text-align: center;
}

.hws-footer-copyright {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes hws-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hws-mobile-toggle {
        display: flex;
    }
    
    .hws-nav-list {
        position: fixed;
        display: none;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--heidelberg-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-xxl) var(--space-lg);
        box-shadow: -5px 0 20px rgba(45, 27, 78, 0.2);
        transition: right var(--ease-smooth);
        gap: var(--space-md);
    }
    
    .hws-nav-list[data-open="true"] {
        right: 0;
        display: flex;
    }
    
    .hws-nav-element {
        width: 100%;
    }
    
    .hws-nav-anchor {
        width: 100%;
        padding: var(--space-md);
        border-radius: 10px;
    }
    
    .hws-nav-anchor::before {
        display: none;
    }
    
    .hws-nav-anchor:hover,
    .hws-nav-anchor.hws-active-link {
        background: rgba(212, 165, 116, 0.1);
    }
    
    .hws-about-content {
        grid-template-columns: 1fr;
    }
    
    .hws-steps-container {
        grid-template-columns: 1fr;
    }
    
    .hws-events-grid {
        grid-template-columns: 1fr;
    }
    
    .hws-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hws-hero-wrapper {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hws-content-wrapper {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hws-hero-buttons {
        flex-direction: column;
    }
    
    .hws-primary-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hws-nav-list {
        width: 100%;
    }
    
    .hws-logo-text {
        font-size: 0.7rem;
    }
}

/* Contact Form Styles */
.hws-form-container {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
}

.hws-contact-form {
    background: white;
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
}

.hws-form-field {
    margin-bottom: var(--space-lg);
}

.hws-form-label {
    display: block;
    font-weight: 600;
    color: var(--heidelberg-deep-purple);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.hws-form-input,
.hws-form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(45, 27, 78, 0.1);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--heidelberg-charcoal);
    background: var(--heidelberg-cream);
    transition: all var(--ease-smooth);
}

.hws-form-input:focus,
.hws-form-textarea:focus {
    outline: none;
    border-color: var(--heidelberg-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.hws-form-input.hws-input-error,
.hws-form-textarea.hws-input-error {
    border-color: #e74c3c;
}

.hws-form-error {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    min-height: 20px;
}

.hws-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.hws-form-submit {
    width: 100%;
    margin-top: var(--space-md);
}

/* Event Details Styles */
.hws-event-details {
    margin-top: var(--space-lg);
}

.hws-event-detail-item {
    color: rgba(245, 241, 232, 0.95);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.hws-map-link {
    color: var(--heidelberg-gold);
    text-decoration: underline;
    transition: color var(--ease-smooth);
}

.hws-map-link:hover {
    color: var(--heidelberg-teal);
}

.hws-event-description,
.hws-tickets-section {
    margin-bottom: var(--space-xxl);
    padding: 24px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(45, 27, 78, 0.1);
}

.hws-event-description p,
.hws-tickets-section p {
    color: var(--heidelberg-slate);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.hws-ticket-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

/* Success Modal Styles */
.hws-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: hws-fade-in 0.3s ease;
}

.hws-success-modal[aria-hidden="false"] {
    display: flex;
}

.hws-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(5px);
}

.hws-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 24px 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45, 27, 78, 0.3);
    animation: hws-modal-slide-up 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

.hws-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--ease-smooth);
    color: var(--heidelberg-slate);
}

.hws-modal-close:hover {
    background: rgba(45, 27, 78, 0.1);
    transform: rotate(90deg);
}

.hws-modal-close svg {
    width: 20px;
    height: 20px;
}

.hws-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--heidelberg-gold), var(--heidelberg-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: hws-scale-bounce 0.6s ease;
}

.hws-modal-icon svg {
    width: 40px;
    height: 40px;
}

.hws-modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    margin-bottom: 15px;
}

.hws-modal-message {
    color: var(--heidelberg-slate);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hws-modal-button {
    width: 100%;
}

@keyframes hws-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes hws-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hws-scale-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Policy Pages Styles */
.hws-event-description h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heidelberg-deep-purple);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.hws-event-description h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heidelberg-deep-purple);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.hws-event-description ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--heidelberg-slate);
    line-height: 1.8;
}

.hws-event-description ul li {
    margin-bottom: var(--space-xs);
}

.hws-event-description p {
    color: var(--heidelberg-slate);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.hws-event-description a {
    color: var(--heidelberg-gold);
    text-decoration: underline;
    transition: color var(--ease-smooth);
}

.hws-event-description a:hover {
    color: var(--heidelberg-teal);
}

.hws-event-description em {
    color: var(--heidelberg-slate);
    font-style: italic;
}

