/* style.css */
:root {
    --primary-color: #ff0000; /* YouTube Red */
    --secondary-color: #2c3e50; /* Dark Blue/Gray */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --max-width: 1100px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container utility for centering content */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo span {
    color: var(--text-light);
}

.nav-links a {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    margin-left: 10px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* --- Homepage Hero Section --- */
.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column-reverse; /* Image on top on mobile */
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.btn-join {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Image Styling */
.hero-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%; /* Makes the image a circle */
    border: 5px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- Apps Page Styling --- */
.apps-section {
    padding: 4rem 0;
    text-align: center;
}

/* --- Responsive Design (Media Queries) --- */
/* For Tablet and Desktop screens (min-width 768px) */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row; /* Text left, image right on desktop */
        justify-content: space-between;
        text-align: left;
    }

    .hero-text {
        flex: 1; /* Takes available space */
    }

    .hero-text p {
        margin-left: 0; /* Reset center alignment */
    }

    .btn-group {
        justify-content: flex-start;
    }

    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .hero-image img {
        width: 350px;
        height: 350px;
    }

      /* Specific styles for the Coming Soon page */
            .construction-container {
                min-height: 80vh; /* Takes up most of the screen height */
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding: 2rem;
            }

            .construction-img {
                max-width: 100%;
                width: 400px;
                margin-bottom: 2rem;
                /* Simple floating animation */
                animation: float 3s ease-in-out infinite;
            }

            .construction-text h1 {
                font-size: 2.5rem;
                color: var(--secondary-color);
                margin-bottom: 1rem;
            }

            .construction-text p {
                font-size: 1.2rem;
                color: #666;
                margin-bottom: 2rem;
                max-width: 600px;
            }

            @keyframes float {
                0% { transform: translateY(0px); }
                50% { transform: translateY(-15px); }
                100% { transform: translateY(0px); }
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .construction-text h1 {
                    font-size: 2rem;
                }
                .construction-img {
                    width: 280px;
                }
            }

            /* Apps Section */
            .apps-section {
              padding: 50px 0;
              text-align: center;
            }

            .apps-title {
              font-size: 32px;
              margin-bottom: 30px;
              font-weight: bold;
            }

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

            .app-card {
              background: #ffffff;
              padding: 25px;
              border-radius: 15px;
              box-shadow: 0 4px 10px rgba(0,0,0,0.08);
              text-align: left;
              transition: transform 0.2s ease, box-shadow 0.2s ease;
            }

            .app-card:hover {
              transform: translateY(-5px);
              box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            }

            .app-name {
              font-size: 22px;
              font-weight: bold;
              margin-bottom: 10px;
            }

            .app-desc {
              font-size: 15px;
              margin-bottom: 20px;
              color: #555;
            }

            .btn-launch {
              display: inline-block;
              padding: 10px 20px;
              background: #ff5722;
              color: white;
              font-weight: bold;
              text-decoration: none;
              border-radius: 8px;
            }

            .telegram-section {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 40px;
}

.telegram-btn {
    display: inline-block;
    background: #229ED9;   /* Telegram Blue */
    color: #fff;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.telegram-btn:hover {
    background: #1b8bbf;
    transform: translateY(-3px);
}


}