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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Color System */
:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    
    --secondary-50: #f5f3ff;
    --secondary-100: #ede9fe;
    --secondary-500: #8b5cf6;
    --secondary-600: #7c3aed;
    
    --accent-500: #f59e0b;
    --accent-600: #d97706;
    
    --success-500: #10b981;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--neutral-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-500);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-600);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-secondary:hover {
    background-color: var(--primary-500);
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    padding: 60px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
}

.hero-content h1 {
    font-size: 2.75rem;
    color: var(--neutral-800);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Image Placeholders */
.image-placeholder {
    background: var(--neutral-100);
    border: 2px dashed var(--neutral-300);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-weight: 500;
    min-height: 200px;
    width: 100%;
}

/* Attraction Images */
.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.events-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Service Pricing */
.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-600);
    margin: 16px 0;
    text-align: center;
}

/* Section Styles */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: var(--neutral-50);
}

/* Override center alignment for specific sections */
.contacts,
.footer {
    text-align: left;
}

.header {
    text-align: left;
}

/* About Section */
.about h2 {
    text-align: center;
    margin-bottom: 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* Attractions Sections */
.ar-section {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
}

.vr-section h2,
.ar-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.attraction-card .image-placeholder {
    height: 200px;
    border-radius: 0;
    border: none;
    background: var(--neutral-100);
}

.attraction-card h3,
.attraction-card p {
    padding: 0 24px;
}

.attraction-card h3 {
    padding-top: 24px;
    margin-bottom: 8px;
}

.attraction-card p {
    padding-bottom: 24px;
    color: var(--neutral-600);
}

/* Services Section */
.services h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.service-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-500) 0%, var(--secondary-50) 100%);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

/* How It Works Section */
.how-it-works h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* Events Section */
.events .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.events-text ul {
    list-style: none;
    padding-left: 0;
}

.events-text li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.events-text li:before {
    content: "•";
    color: var(--primary-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contacts Section */
.contacts {
    background: var(--neutral-50);
}

.contacts h2 {
    text-align: center;
    margin-bottom: 48px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-info {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--neutral-800);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo-container .brand-name {
    color: white;
}

.footer-brand p {
    color: var(--neutral-300);
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: 24px;
    text-align: center;
    color: var(--neutral-400);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 32px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .events .container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
}