/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: none;
}

.nav-line {
    height: 2px;
    background: #007bff;
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-emblem {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winged-creatures {
    position: relative;
    width: 40px;
    height: 30px;
}

.winged-left, .winged-right {
    position: absolute;
    width: 20px;
    height: 15px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.winged-left {
    left: 0;
    transform: rotate(-45deg);
}

.winged-right {
    right: 0;
    transform: rotate(45deg);
}

.crown-element {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.logo-text {
    text-align: center;
}

.since-text {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 2px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

/* M Icons */
.m-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0 0.5rem;
}

.m-icon-large {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #d4af37;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem 0;
}

.m-icon-small {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #d4af37;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 15px;
    font-size: 0.6rem;
    font-weight: bold;
    margin: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f0e1 0%, #e8dcc0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-dark {
    background: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Restaurant Section */
.restaurant-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.restaurant-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f6f0;
}

.services-summary {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Entertainment Section */
.entertainment-section {
    padding: 80px 0;
    background: #fff;
}

.entertainment-main {
    margin: 3rem 0;
}

.entertainment-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.casino-features {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f8f6f0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.review-card h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.review-card h5 {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-card p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* About & Contact Section */
.about-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4e79d 100%);
    color: white;
}

.about-contact-section .section-title {
    color: white;
}

.about-contact-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f6f0;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 40px 0;
    background: #f0f0f0;
    text-align: center;
}

.disclaimer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disclaimer-section p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #d4af37;
}

.footer-policies {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-policies a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #d4af37;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Section padding adjustments for fixed navbar */
section {
    scroll-margin-top: 100px;
}

