* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --gold-light: #FFD700;
    --gold: #FFB300;
    --gold-dark: #FF8C00;
    --amber: #FF8F00;
    --brown-light: #8D6E63;
    --brown: #5D4037;
    --brown-dark: #3E2723;
    --white: #FFF8E1;
    --black: #212121;
}

body {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: relative;
    z-index: 10;
    background: rgba(33, 33, 33, 0.8);
    border-bottom: 1px solid rgba(255, 179, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-btn {
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 700;
}

.nav-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Hero Detail */
.detail-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 3rem;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(62, 39, 35, 0.7), rgba(62, 39, 35, 0.9));
    z-index: 2;
}

.detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 5rem;
    left: 5%;
    z-index: 3;
    max-width: 1200px;
    width: 90%;
}

.fest-tag {
    background: var(--gold);
    color: var(--brown-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.fest-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.meta-item i {
    color: var(--gold);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.ticket-btn {
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
}

.ticket-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.share-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.share-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

/* Detail Content */
.detail-content {
    max-width: 1200px; /* Default for larger screens */
    margin: 0 auto;
    padding: 0 5% 5rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

@media (max-width: 900px) {
    .detail-content {
        grid-template-columns: 1fr;
    }
}

.main-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.description {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(93, 64, 55, 0.5);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: fit-content;
}

.info-box {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    margin-bottom: 1rem;
    gap: 1rem;
}

.info-item i {
    color: var(--gold);
    min-width: 20px;
}

.info-text {
    flex: 1;
}

.info-text h4 {
    margin-bottom: 0.3rem;
    color: var(--gold-light);
}

/* Removed sections - keeping these for context, but they are not used in HTML */
.map-container, .transport-buttons, .organizer-card, .gallery, .similar-events {
    /* These styles are kept in case they are relevant for other parts, but the corresponding HTML elements are removed */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--brown-light), var(--gold));
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.1);
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    z-index: 2;
    opacity: 0.8;
}

/* Similar Events */
.similar-events {
    margin-top: 4rem;
}

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

.event-card {
    background: rgba(62, 39, 35, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.event-img {
    height: 180px;
    background: linear-gradient(45deg, var(--brown-light), var(--gold));
    position: relative;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--brown-dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.event-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: relative;
    z-index: 5;
    background: rgba(33, 33, 33, 0.8);
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 179, 0, 0.2);
}

.footer-content {
    max-width: 1200px; /* Default for larger screens */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--brown-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 900px) {
    .detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        bottom: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .detail-hero {
        height: 50vh;
    }
    
    .fest-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .detail-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
}

/* WQHD and larger screen adjustments (min-width: 1921px targeting WQHD (2560px width) and above) */
@media (min-width: 1921px) {
    .detail-content {
        max-width: 1600px; /* Increase content width for WQHD */
        grid-template-columns: 1fr 450px; /* Adjust sidebar width for larger screens */
        gap: 4rem; /* Increase gap between main content and sidebar */
    }

    .footer-content {
        max-width: 1600px; /* Increase footer content width for WQHD */
    }

    header {
        padding: 2rem 8%; /* Adjust header padding */
    }

    .hero-content {
        left: 8%; /* Adjust hero content position */
        max-width: 1600px; /* Adjust hero content max-width */
    }

    .detail-hero h1 {
        font-size: 4.5rem; /* Larger font size for main title */
    }

    .fest-tag {
        padding: 0.7rem 2rem; /* Larger padding for tag */
        font-size: 1.1rem;
    }

    .fest-meta .meta-item {
        font-size: 1.4rem; /* Larger font size for meta items */
    }

    .action-btn {
        padding: 1rem 2.2rem; /* Larger buttons */
        font-size: 1.1rem;
    }

    .main-content, .sidebar {
        padding: 3.5rem; /* More padding inside content boxes */
        border-radius: 25px; /* Slightly larger border radius */
    }

    .section-title {
        font-size: 2.5rem; /* Larger section titles */
    }

    .description {
        font-size: 1.2rem; /* Slightly larger text for descriptions */
    }

    .info-box h3 {
        font-size: 1.6rem; /* Larger info box titles */
    }

    .info-item {
        font-size: 1.1rem; /* Larger info item text */
    }

    .highlight-card {
        padding: 2rem; /* Larger highlight cards */
    }

    .highlight-card i {
        font-size: 3rem; /* Larger icons in highlights */
    }

    .highlight-card h3 {
        font-size: 1.8rem; /* Larger highlight card titles */
    }

    .event-card .event-content h3 {
        font-size: 1.6rem; /* Larger event card titles */
    }

    .footer-col h4 {
        font-size: 1.8rem; /* Larger footer column titles */
    }
}

/* Comments Section */
.comments-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section .section-title {
    margin-bottom: 2rem;
}

.comment-form {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comment-form h3 {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.comment-form .form-group {
    margin-bottom: 1.2rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 8px;
    background: rgba(33, 33, 33, 0.7);
    color: var(--white);
    font-size: 1rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
}

.comment-form textarea {
    min-height: 120px;
}

.comment-form button {
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.comment-list {
    margin-top: 2rem;
}

.comment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    color: var(--brown-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comment-info h4 {
    color: var(--gold);
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.comment-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.comment-body p {
    line-height: 1.6;
    color: var(--white);
    font-size: 1rem;
}

/* Responsive adjustments for comments section */
@media (max-width: 768px) {
    .comment-form {
        padding: 1.5rem;
    }
    .comment-form h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 1921px) {
    .comments-section {
        padding-top: 3rem;
    }
    .comment-form {
        padding: 3rem;
        margin-bottom: 4rem;
    }
    .comment-form h3 {
        font-size: 1.8rem;
    }
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form textarea {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    .comment-form button {
        padding: 1.1rem 2.5rem;
        font-size: 1.2rem;
    }
    .comment-card {
        padding: 2rem;
    }
    .comment-header {
        gap: 1.2rem;
    }
    .comment-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .comment-info h4 {
        font-size: 1.4rem;
    }
    .comment-info span {
        font-size: 1rem;
    }
    .comment-body p {
        font-size: 1.1rem;
    }
}


.share-btn.copied {
    background-color: #4CAF50;
    color: white;
  }
  
  .share-btn.copied::after {
    content: 'Link kopiert!';
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: #fff;
  }
  