/* Senioren Section */
.senioren-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    align-items: start;
}

.senioren-text p {
    margin-bottom: 1rem;
}

.senioren-benefits {
    background-color: #gold;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.senioren-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.senioren-benefits ul {
    margin-bottom: 2rem;
}

.senioren-benefits li {
    margin-bottom: 1rem;
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.senioren-benefits li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .senioren-content {
        grid-template-columns: 1fr;
    }
}/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background-color: #ce8946;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.service-item p {
    color: white;
	text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }
}/* Main Styles for Johnny Valentino Website */

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

:root {
    --primary-color: #ce8946;
    --secondary-color: #3498db;
    --dark-color: #ce8946;
    --light-color: #ecf0f1;
    --text-color: #ffffff;
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.Side-by-Side {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #ff3cac;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

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

/* Header Styles */
header {
    background-color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo h1 {
    margin: 0; margin-left: 10px;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    
}

.nav-list li {
    margin-left: 1.5rem;
    background-color: black;
}

.nav-list a {
    color: #ce8946;
    font-weight: 600;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Section Styles */

.divider {
    height: 2px;
    background-color: var(--primary-color);
    width: 80%;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    text-align: left;
    color: var(--primary-color);
    margin-top: 0;
}

.hero-content h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.hero-content .btn {
    margin-top: 1.5rem;
    display: inline-block;
}

/* Photo Slider */
.photo-slider {
    position: relative;
    width: 450px;
    height: 550px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
}

.johhny-bingo {
    position: relative;
    width: 450px;
    height: 550px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
}

.johhny-bingo img {
    position: absolute;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 5;
    transform: translateY(50%);
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Photo Block */
.photo-block {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.photo-block img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* Contact Form */
.contact-form {
    background-color: #ce8946;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group p{
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;

}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
	
}


/* FAQ */
.faq-item {
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-button a:hover {
    background-color: #128C7E;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: #black;
    color: white;
    padding: 3rem 0 2rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 2rem;
    max-width: 200px;
}

.footer-logo img {
    width: 100%;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: var(--light-color);
}

/* Hidden SEO Keywords */
.seo-keywords {
    position: absolute;
    left: -9999px;
    color: white;
    background-color: white;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Image Position Utility Classes */
.img-position-top {
    object-position: center top !important;
}

.img-position-center {
    object-position: center center !important;
}

.img-position-bottom {
    object-position: center bottom !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    .Side-by-Side { 
        display: initial;
    }
    
    .menu-toggle {
        display: block;
    }

    .logo img {
        max-width: 100%;
        z-index: 9999;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: black;
        width: 100%;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transition: var(--transition);
    }
    
    .nav-list a {
        color: #ce8946;
    }

    .nav-list.active {
        left: 0;
        background-color: black;
        padding: 0;
        padding-top: 1rem;
    }
    
    .nav-list li {
        padding: 1rem 0;
        text-align: center;
        background-color: black;
        border: 2px solid #ce8946;
        margin: 0;
    }
    
    .photo-slider {
        width: 100%;
        max-width: 300px;
        height: 400px;
        margin: 0 auto 2rem;
    }

    .johhny-bingo {
        width: 100%;
        max-width: 300px;
        height: 400px;
        margin: 0 auto 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content h2 {
        text-align: center;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}