/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo, .footer-logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1593784991095-a205069470b6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Demo Theatre Section */
.demo-theatre {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.demo-theatre h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1.1rem;
}

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

/* Buttons */
.cta-button,
.submit-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover,
.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 2rem 0 0.5rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem auto;
    text-align: left;
    max-width: 1200px;
    padding: 0 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.3rem;
    white-space: nowrap;
}

.info-item.location {
    white-space: normal;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-details p {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
}

.info-item i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    min-width: 16px;
    margin-top: 0.2rem;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.2;
    margin: 0;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .footer-content .locations-container {
        flex-direction: column !important;
        gap: 0.8rem;
        align-items: flex-start;
        width: 100%;
    }
    .footer-content .info-item.location {
        width: 100%;
        max-width: 100%;
    }
    .info-item.location {
        min-width: 0;
        box-sizing: border-box;
        word-break: break-word;
    }
    .location-details p {
        font-size: 1rem;
        line-height: 1.4;
        word-break: break-word;
    }
    .footer-logo {
        font-size: 1.8rem;
    }
}

.locations-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.5rem;
}

.info-item.location {
    white-space: normal;
    width: auto;
    min-width: 250px;
    max-width: 300px;
    margin: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-details p {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
} 