:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6914;
    --accent-color: #d4af37;
    --accent-color-hover: #c8a122;
    --text-primary: #2c1810;
    --text-secondary: #6b5b47;
    --text-tertiary: #ccb593;
    --bg-primary: #faf8f5;
    --bg-secondary: #f5f2ed;
    --bg-tertiary: #ede8e0;
    --bg-hover: #f1eace;
    --border-color: #d4c4a8;
    --shadow-light: 0 2px 10px rgba(44, 24, 16, 0.1);
    --shadow-medium: 0 8px 25px rgba(44, 24, 16, 0.15);
    --shadow-heavy: 0 15px 35px rgba(44, 24, 16, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
}

/* Decorative elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 105, 20, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: underline;
    color: var(--text-secondary);
}

a:hover {
    color: var(--accent-color);
}

#webdesign-p, #webdesign-p a {
    color: #a58d62;
}

#webdesign-p a {
    text-decoration: none;
}

#webdesign-p a:hover {
    color: var(--text-secondary);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '♪';
    position: absolute;
    top: -5px;
    right: -20px;
    font-size: 1rem;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Hero */
.hero {
    text-align: center;
    padding: 3rem 0;
    /*background: var(--bg-secondary);*/
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ornament" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 Q35,20 25,30 Q15,20 25,10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23ornament)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 5px solid var(--accent-color);
    box-shadow: var(--shadow-medium);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    z-index: -1;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.1);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;

}

.hero .description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    /*font-family: 'Cormorant Garamond', serif;*/
}

.hero .sub-description {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
}

.section:nth-child(even) {
    /*background: var(--bg-secondary);*/
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '❦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
}

.section-title::before {
    left: -3rem;
}

.section-title::after {
    right: -3rem;
}

/* Events */
.events-container {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    position: relative;
}

.events-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(139, 105, 20, 0.1));
    border-radius: 15px;
    z-index: -1;
}

.events-list {
    list-style: none;
}

.event-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item::before {
    content: '♫';
    position: absolute;
    left: -4rem;
    top: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.event-item:hover::before {
    opacity: 1;
}

.event-item.clickable-event-link {
    cursor: pointer;
}

.event-item.clickable-event-link:hover, .event-item.clickable-event-info:hover {
    padding-left: 1rem;
    margin: 0 -1rem;
    padding-right: 1rem;
    border-radius: 8px;
    background-color: var(--bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.event-item:not(.clickable-event-link):not(.clickable-event-info):hover {

}

.event-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.event-location {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.1rem;
}

.event-link-indicator {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.event-item.clickable-event-link:hover .event-link-indicator, .event-item.clickable-event-info:hover .event-link-indicator {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.event-item.clickable-event-info:hover {
    padding-left: 1rem;
    margin: 0 -1rem;
    padding-right: 1rem;
    border-radius: 8px;
    background-color: var(--bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.event-item.clickable-event-info::after {
    content: 'Mehr erfahren →';
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    display: block;
}

.event-item.clickable-event-info:hover::after {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Projects */
.projects-container {
    /*background: white;*/
    border-radius: 15px;
    /*padding: 2.5rem;*/
    /*box-shadow: var(--shadow-medium);*/
    /*border: 1px solid var(--border-color);*/
    position: relative;
}

.projects-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /*background: linear-gradient(45deg, rgba(139, 105, 20, 0.2), rgba(212, 175, 55, 0.3));*/
    border-radius: 15px;
    z-index: -1;
}

.projects-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    padding: 2rem;
    /*background: var(--bg-tertiary);*/
    background: linear-gradient(45deg, #f3e9b2, #efe5ce);
    /*background: linear-gradient(45deg, #F6EFD8, #F3EFE5);*/
    /*background-color: white;*/
    /*background-color: var(--bg-hover);*/
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    outline: 2px solid transparent;
    box-shadow: var(--shadow-light);
}

.project-item.clickable-project-link {
    cursor: pointer;
}

.project-item.clickable-project-link:hover, .project-item.clickable-project-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    outline-color: var(--accent-color);
}

.project-item:not(.clickable-project-link):not(.clickable-project-info):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    outline-color: var(--border-color);
}

.project-item::after {
    pointer-events: none;
    content: '♪';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.project-item:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.project-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-link-indicator {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.project-item.clickable-project-link:hover .project-link-indicator, .project-item.clickable-project-info:hover .project-link-indicator {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}


.project-item.clickable-project-info .project-description::after {
    content: 'Mehr erfahren →';
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    display: block;
}

.project-item.clickable-project-info:hover .project-description::after {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Media */
.media-container {
    /*background: var(--bg-primary);*/
    border-radius: 15px;
    /*padding: 2.5rem;*/
    /*box-shadow: var(--shadow-medium);*/
    /*border: 1px solid var(--border-color);*/
    position: relative;
}

/*.media-container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -2px;*/
/*    left: -2px;*/
/*    right: -2px;*/
/*    bottom: -2px;*/
/*    !*background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));*!*/
/*    border-radius: 15px;*/
/*    z-index: -1;*/
/*}*/

.media-list {
    list-style: none;
    display: grid;
    border: none;
    grid-template-columns: 1fr;
    gap: 2rem;
    /*background: var(--bg-primary);*/
}

.media-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.media-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.media-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.media-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.media-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-top: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Gallery */
.gallery-container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Image Gallery Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal .modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1500px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: rgba(255, 255, 255, 0.2);*/
    background: none;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    border: none;
    font-size: 30px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    /*backdrop-filter: blur(10px);*/
}

.modal-nav:hover {
    /*background: rgba(255, 255, 255, 0.2);*/
    color: var(--accent-color);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Content Modal for Events/Projects */
.content-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.content-modal-dialog {
    position: relative;
    margin: 3% auto;
    width: 90%;
    max-height: 93dvh;
    max-width: 700px;
    overflow: hidden;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--accent-color);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem 1rem;
    border-bottom: 2px solid var(--border-color);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 1;
}

.content-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.content-modal-close {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.content-modal-close:hover {
    color: var(--accent-color);
}

.content-modal-body {
    padding: 2rem 2.5rem 3rem;
    flex: 1;
    overflow-y: auto;
}

.content-modal-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.content-modal-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border-color);
}

.content-modal-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.content-modal-text p {
    margin-bottom: 1.5rem;
}

.content-modal-text p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact {
    text-align: center;
    /*background: var(--bg-secondary);*/
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--accent-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    /*border: 2px solid var(--border-color);*/
    border-radius: 20px;
    z-index: -1;
}

.contact .section-title::before {
    left: 2rem;
}

.section-title::after {
    right: 2rem;
}

.contact .section-title::before {
    left: 2rem;
}

.section-title::after {
    right: 2rem;
}

.contact-info {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-email {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 3px solid var(--accent-color);
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-email:hover::before {
    left: 0;
}

.contact-email:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-color);
}

.social-link:hover {
    background: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Contact Form */
.contact-form-container {
    margin: 2rem 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.form-submit-btn:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-direct {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.contact-alternative {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
    font-style: italic;
    border-top: 2px solid var(--border-color);
    margin-top: 3rem;
    /*background: var(--bg-secondary);*/
}

/* Styles for mobile */
@media (max-width: 641px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100dvh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 9;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .events-container,
    .contact {
        padding: 2rem 1.5rem;
    }

    .media-list {
        grid-template-columns: 1fr;
    }

    .contact-email {
        font-size: 1.4rem;
        max-width: 100%;
    }

    .media-item {
        padding: 0;
        background: none;
    }

    .media-item:hover {
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .image-modal .modal-content {
        padding: 5px;
        width: 97%;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }

    .content-modal-body {
        padding-left: 1.5rem;
        padding-right: 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/*if screen is smaller than 1000px*/
@media (max-width: 1000px) {
    .section-title::before {
        left: 2rem;
    }

    .section-title::after {
        right: 2rem;
    }

    .event-item::before {
        left: auto;
        right: 2rem;
    }
}