/* African Drums - CSS Only Website */
/* Αφρικανική Σαβάνα Θέμα */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

/* CSS Variables - Αφρικανική Παλέτα */
:root {
    --color-burnt-orange: #CC5500;
    --color-deep-brown: #3D2B1F;
    --color-sand-beige: #F5F5DC;
    --color-dark-gray: #2C2C2C;
    --color-wood-brown: #8B4513;
    --color-sunset-orange: #FF6B35;
    --color-earth-red: #A0522D;
    --color-gold: #FFD700;
    --color-black: #000000;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Shadows */
    --shadow-wood: 0 4px 8px rgba(139, 69, 19, 0.3);
    --shadow-drum: 0 6px 12px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-deep-brown);
    background: linear-gradient(135deg, var(--color-sand-beige) 0%, #E6D7C3 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Hidden checkbox for mobile menu */
#mobile-menu-toggle {
    display: none;
}

/* Main Content - Always Visible */
.main-content {
    opacity: 1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--color-deep-brown) 0%, var(--color-wood-brown) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

/* Mobile Menu - CSS Only Hamburger */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-white);
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-sand-beige) 0%, #E6D7C3 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(204, 85, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-deep-brown);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-wood-brown);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-drum);
    margin-bottom: 2rem;
}

.hero-disclaimer {
    background: linear-gradient(135deg, var(--color-deep-brown), var(--color-burnt-orange));
    border: 3px solid var(--color-gold);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-disclaimer::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="warning" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.disclaimer-text {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.age-warning {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, var(--color-burnt-orange), var(--color-sunset-orange));
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-wood);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(45deg, var(--color-sunset-orange), var(--color-burnt-orange));
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-deep-brown);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--color-burnt-orange), var(--color-gold));
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-wood-brown);
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.about-features li::before {
    content: '🥁';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.faq-question {
    background: linear-gradient(45deg, var(--color-wood-brown), var(--color-burnt-orange));
    color: var(--color-white);
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(45deg, var(--color-burnt-orange), var(--color-sunset-orange));
}

.faq-answer {
    padding: 1.5rem;
    color: var(--color-deep-brown);
    line-height: 1.6;
    display: none;
}

/* FAQ Toggle - CSS Only */
.faq-toggle {
    display: none;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-deep-brown) 0%, var(--color-black) 100%);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

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

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

.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--color-sand-beige);
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
}

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

.responsible-gaming {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.responsible-gaming img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.age-restriction {
    background: var(--color-gold);
    color: var(--color-deep-brown);
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-sand-beige);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--color-sand-beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-deep-brown);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
        /* Mobile Menu Toggle - CSS Only */
    #mobile-menu-toggle:checked ~ .main-content .header .nav-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    

    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes drum-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.drum-animation {
    animation: drum-beat 2s ease-in-out infinite;
}

/* Social Casino Section */
.social-casino-section {
    background: linear-gradient(135deg, var(--color-sand-beige) 0%, #E6D7C3 100%);
    position: relative;
}

.social-casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(204, 85, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.casino-info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-wood);
    border: 2px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.casino-info-card:hover::before {
    left: 100%;
}

.casino-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    border-color: var(--color-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.casino-info-card h3 {
    font-family: var(--font-heading);
    color: var(--color-deep-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.casino-info-card p {
    color: var(--color-wood-brown);
    line-height: 1.6;
}

.casino-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--color-gold);
    color: var(--color-deep-brown);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    color: var(--color-deep-brown);
}

/* Slots Section */
.slots-section {
    background: linear-gradient(135deg, var(--color-deep-brown) 0%, var(--color-wood-brown) 100%);
    color: var(--color-white);
}

.slots-section .section-title {
    color: var(--color-gold);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-sand-beige);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.slot-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-drum);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.slot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}

.slot-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image img {
    transform: scale(1.1);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(45deg, var(--color-gold), var(--color-sunset-orange));
    color: var(--color-deep-brown);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: linear-gradient(45deg, var(--color-sunset-orange), var(--color-gold));
    transform: scale(1.1);
    color: var(--color-white);
}

.slot-info {
    padding: 1.5rem;
    text-align: center;
}

.slot-info h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.slot-info p {
    color: var(--color-sand-beige);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.visible { display: block; } 