/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background-color: #0a0a0a;
    color: white;
}

.navbar {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0a0a0a;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
    border-bottom: 2px solid #8a2be2;
}

.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #9370db;
}

.logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: #0a0a0a;
    border-bottom: 2px solid #8a2be2;
}

.logo-container a {
    display: inline-block;
}

.logo-image {
    height: 500px;
    width: auto;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h2 {
    color: #9370db;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0033 0%, #4b0082 50%, #8a2be2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid #9370db;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #8a2be2;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    border: 2px solid #9370db;
}

.cta-button:hover {
    background-color: #9370db;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #9370db;
}

.cta-button.secondary:hover {
    background-color: #8a2be2;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #1a1a1a;
    border-radius: 25px;
    display: inline-flex;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.available {
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-dot.unavailable {
    background-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.status-dot.busy {
    background-color: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.status-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* About Preview Section */
.about-preview {
    padding: 80px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.about-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #9370db;
}

.about-preview p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
}

.link-button {
    color: #9370db;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 2px solid #9370db;
    transition: color 0.3s;
}

.link-button:hover {
    color: #ba55d3;
    border-color: #ba55d3;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 20px;
    background-color: #000000;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9370db;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(138, 43, 226, 0.2);
    transition: all 0.3s;
    border: 2px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #9370db;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 20px;
}

.service-card a {
    color: #9370db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #ba55d3;
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.menu-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #9370db;
}

.menu-intro {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #8a2be2;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.menu-note {
    font-size: 16px;
    color: #9370db;
    margin-top: 30px;
    font-style: italic;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background-color: #000000;
}

.reviews-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9370db;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: #8a2be2;
    box-shadow: 0 8px 15px rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.review-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    color: #9370db;
    font-weight: bold;
    text-align: right;
    font-size: 14px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.gallery-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #9370db;
}

.gallery-intro {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    border-color: #8a2be2;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-note {
    font-size: 16px;
    color: #9370db;
    margin-top: 30px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Platform Links Section */
.platform-links {
    padding: 80px 20px;
    background-color: #0a0a0a;
}

.platform-links h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9370db;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #2a2a2a;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 8px 15px rgba(138, 43, 226, 0.4);
}

.platform-card h3 {
    color: #9370db;
    font-size: 24px;
    margin-bottom: 10px;
}

.platform-card p {
    color: #cccccc;
}


/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #000000;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #9370db;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    color: #9370db;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 30px;
}

.contact-item h4 {
    color: #9370db;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #9370db;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #9370db;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background-color: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: white;
    padding: 40px 20px 20px;
    border-top: 2px solid #8a2be2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #9370db;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cccccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #9370db;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    color: #999;
}

.warning {
    color: #9370db;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-image {
        border-radius: 10px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}