* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></svg>') 16 16, auto;
}

/* Container für den Sonderaktions-Button */
.special-offer-container {
    width: 100%; /* Macht den Container genauso breit wie die übergeordnete Fläche */
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* Fügt Abstand zu den Buttons oben hinzu */
}

.offer-section {
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.offer-section a {
    color: #fff;
    text-decoration: underline;
}

/* Stil für den Sonderaktions-Button */
.card.special-offer {
    width: 100%; /* Der Button wird die gesamte verfügbare Breite einnehmen */
    max-width: 900px; /* Maximale Breite, damit der Button nicht zu groß wird */
    height: 100px; /* Höhe des Buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e81e28; /* Farbe für den Sonderaktions-Button */
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.card.special-offer:hover {
    transform: scale(1.05); /* Skalierungseffekt beim Hover */
}

.card.special-offer .card-content {
    text-align: center;
}

.card.special-offer .label {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}


/* Flash effect container */
.cursor-flash {
    pointer-events: none;
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

.cursor-flash.active {
    opacity: 1;
    transition: opacity 0s;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff8a00, #e81e28, #E84AC8);
    background-size: 400% 400%;
    animation: gradientAnimation 25s ease infinite;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Home button styles */
.home-icon {
    text-decoration: none;
    padding: 1rem;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 101;
}

.home-icon img {
    height: 2rem; /* Set the height explicitly for consistent display */
    width: auto;
    display: block;
    object-fit: contain; /* Ensures proper scaling of the image */
}

.home-icon:hover {
    transform: scale(1.2); /* Slight zoom on hover */
    opacity: 0.9; /* Slight fade effect */
}


.logo-container {
    height: 250px;
    margin-right: 1rem;
    margin-top: 1rem;
    position: absolute;
    top: 0;
    right: 0;
}

.logo-container img {
    height: 50%;
    width: auto;
    object-fit: contain;
}

.logo-container a:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
    transition: transform 0.3s ease;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hidden {
    display: none;
}

.cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    width: 300px;
    height: 300px;
    border: 2px solid #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

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

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.label {
    font-size: 1.2rem;
    font-weight: 500;
}

.content-page {
    padding-top: 4rem;
    align-items: flex-start;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    padding: 2rem;
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-container {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .cards-container {
        gap: 1rem;
    }
    
    .card {
        width: 250px;
        height: 250px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .logo-container {
        height: 50px;
    }
}

.offer-details {
    margin: 20px 0;
    padding: 50px;
    background: #f8f8f8;
    border-radius: 8px;
}


/* Add this to target text color in about section */
.about-text p {
    color: #fff; /* Sets the text color to white */
}
