@font-face {
    font-family: 'Garamond';
    src: url('../fonts/Garamond/EBGaramond-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Garamond';
    src: url('../fonts/Garamond/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-v31-latin-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-v31-latin-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-color: #F3EBD9;
    --accent-color: #d4af37;
    --header-footer-bg: #2A3A5A;
    --header-footer-text: #F3EBD9;
    --hover-color: #d4af37;
    --text-color: #333;
    --white: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Global Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--header-footer-bg);
}

.btn-primary:hover {
    background-color: #b8860b;
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-color) 0%, #f8f4ee 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/45bis55.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Artist Intro */
.artist-intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.artist-intro h2 {
    font-family: 'Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.artist-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-content p {
    flex: 1 1 300px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.artist-content .btn-secondary {
    margin-top: 1.5rem;
}

/* Featured Collections */
.featured-collections {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.featured-collections h2 {
    font-family: 'Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-color);
}

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

.collection-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.collection-item img,
.artist-content img,
.blog-post img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(42, 58, 90, 0.85));
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
}

.collection-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Garamond', serif;
    font-size: 1.5rem;
}

.collection-overlay p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Blog Highlights */
.blog-highlights {
    padding: 4rem 0;
}

.blog-highlights h2 {
    font-family: 'Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-post {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin: 0 0 0.75rem 0;
    font-family: 'Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-color);
}

.blog-content p {
    margin: 0 0 1rem 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 4rem 0;
    background-color: var(--header-footer-bg);
    color: var(--header-footer-text);
    text-align: center;
}

.newsletter-cta h2 {
    font-family: 'Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #FFF8F0;
}

.newsletter-cta p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 2px solid var(--header-footer-text);
    border-radius: 4px;
    background: transparent;
    color: var(--header-footer-text);
    font-size: 1rem;
    width: 250px;
    max-width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--header-footer-text);
    opacity: 0.7;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button[type="submit"] {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: var(--header-footer-bg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button[type="submit"]:hover {
    background-color: #b8860b;
    transform: translateY(-2px);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .artist-content {
        flex-direction: column;
        text-align: center;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
    }
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Garamond', serif;
    color: var(--text-color);
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

header {
    background-color: var(--header-footer-bg);
    color: var(--header-footer-text);
    padding: 0.5rem 2rem;
    position: relative;
    z-index: 1000;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

header nav ul .logo img {
    height: 70px;
    width: auto;
    display: block;
    vertical-align: middle;
    transition: none;
    margin-top: 0px;
}

header nav ul .logo:hover {
    background: none;
    color: inherit;
}

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

header nav ul li {
    display: flex;
    align-items: center;
}

header nav ul li a {
    color: var(--header-footer-text);
    font-size: 1.25rem;
    display: inline-block;
    padding-top: 10px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: var(--header-footer-text);
    color: var(--header-footer-bg);
}

header nav ul li a[data-key] u {
    text-decoration: underline;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

footer {
    background-color: var(--header-footer-bg);
    color: var(--header-footer-text);
    padding: 1.5rem 2rem;
    text-align: center;
}

footer .footer-links {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin-top: 0.5rem;
}

footer .footer-links ul li a {
    color: var(--header-footer-text);
    font-size: 1.1rem;
    display: inline-block;
    padding-top: 10px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer .footer-links ul li a:hover {
    background-color: var(--header-footer-text);
    color: var(--header-footer-bg);
}

footer .footer-links ul li a[data-key] u {
    text-decoration: underline;
}

.impressum a::before {
    content: '👉 ';
}
.impressum a {
    color: var(--text-color);
}
.impressum a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--header-footer-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    header nav {
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }

    header nav .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--header-footer-bg);
        padding: 1rem;
        gap: 1rem;
    }

    header nav .nav-menu.active {
        display: flex;
    }

    header nav .nav-menu li {
        text-align: center;
    }

    header nav .nav-menu li a {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 4px;
    }

    header nav .nav-menu li a:hover {
        background-color: var(--header-footer-text);
        color: var(--header-footer-bg);
    }

    header nav ul.nav-menu .logo img {
        height: 50px !important;
        width: auto;
        display: block;
        margin: 0 auto;
    }

footer .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
}