/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Container for Header */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styling */
.logo {
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 5px; /* Space between logo image and site name */
}

.logo img {
    width: 50px; /* Adjusted logo size */
    height:50;
}

.site-name {
    font-size: 28px; /* Increased font size for better visibility */
    font-weight: bold;
    color: #fff; /* Red color for site name */
    text-decoration: none; /* Remove underline */
    margin-left: 10px; /* Ensure space between the logo and site name */
}

/* Header Styles */
.sticky-header {
    background-color: #222;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav ul li {
    font-size: 18px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: #ff5c5c;
    border-radius: 5px;
}

/* Search Bar Styles */
.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    width: 200px;
    margin-right: 10px;
}

.search-bar button {
    padding: 8px 15px;
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.search-bar button:hover {
    background-color: #ff3b3b;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        background-color: #222;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 1rem;
    }

    .main-nav ul li a {
        padding: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active + .main-nav {
        display: block;
    }
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Slides */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth opacity transition */
}

/* Show the active slide */
.hero-slide.active {
    opacity: 1;
}

/* Hero Image */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Text Overlay */
.hero-text {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: white;
    text-align: left;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-text button {
    padding: 12px 24px;
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-text button:hover {
    background-color: #ff3b3b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .hero-text button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}



/* Tamil Movie Section Styles */
.tamil-movie-section {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1rem;
    padding: 10px;
    color: #333;
}

.movie-card button {
    padding: 10px 20px;
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.movie-card button:hover {
    background-color: #ff3b3b;
}

.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-cards {
        flex-direction: column;
        align-items: center;
    }

    .movie-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 2rem;
    }
}




/* Telugu Movie Section Styles */
.telugu-movie-section {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1rem;
    padding: 10px;
    color: #333;
}

.movie-card button {
    padding: 10px 20px;
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.movie-card button:hover {
    background-color: #ff3b3b;
}

.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-cards {
        flex-direction: column;
        align-items: center;
    }

    .movie-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 2rem;
    }
}


/* Hindi Movie Section Styles */
.hindi-movie-section {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1.5rem;
    padding: 10px;
    color: #333;
}

.movie-card button {
    padding: 10px 20px;
    background-color: #ff5c5c;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.movie-card button:hover {
    background-color: #ff3b3b;
}

.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-cards {
        flex-direction: column;
        align-items: center;
    }

    .movie-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 2rem;
    }
}



/* Blog Section Styles */
.blog-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Blog Cards Container */
.blog-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Blog Card */
.blog-card {
    background-color: #fff;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ff5c5c;
}

.card-content {
    padding: 20px;
    color: #333;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.card-content p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.read-article-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5c5c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.read-article-btn:hover {
    background-color: #ff3b3b;
}

/* Explore More Button */
.explore-more-container {
    text-align: center;
    margin-top: 40px;
}

.explore-more-btn {
    padding: 12px 24px;
    background-color: #ff5c5c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.explore-more-btn:hover {
    background-color: #ff3b3b;
}

/* Error Message Styles */
.blog-cards-container .error-message {
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    color: #d9534f;
    font-size: 1rem;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .blog-card {
        width: 100%;
        max-width: 100%;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .read-article-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .explore-more-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}



/* Tamil Movie Page Styles */
.tamil-movie-page {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.page-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 220px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1.5rem;
    padding: 10px;
    color: #333;
    margin: 0;
}

/* Hover Effect */
.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-card {
        width: 45%; /* 2 cards per row on small screens */
    }
}

@media screen and (max-width: 480px) {
    .movie-card {
        width: 100%; /* 1 card per row on very small screens */
    }
}



/* Telugu Movie Page Styles */
.telugu-movie-page {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.page-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 220px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1.5rem;
    padding: 10px;
    color: #333;
    margin: 0;
}

/* Hover Effect */
.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-card {
        width: 45%; /* 2 cards per row on small screens */
    }
}

@media screen and (max-width: 480px) {
    .movie-card {
        width: 100%; /* 1 card per row on very small screens */
    }
}



/* Hindi Movie Page Styles */
.hindi-movie-page {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.page-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c5c;
    margin-bottom: 40px;
}

/* Movie Cards Container */
.movie-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Movie Card */
.movie-card {
    width: 220px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.movie-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 1.5rem;
    padding: 10px;
    color: #333;
    margin: 0;
}

/* Hover Effect */
.movie-card:hover {
    transform: translateY(-10px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .movie-card {
        width: 45%; /* 2 cards per row on small screens */
    }
}

@media screen and (max-width: 480px) {
    .movie-card {
        width: 100%; /* 1 card per row on very small screens */
    }
}



/* Footer Styles */
.site-footer {
    background-color: #1d1d1d; /* Dark background */
    color: #fff;
    padding: 40px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 30px;
}

.footer-container div {
    flex: 1;
}

.footer-container h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff5c5c; /* Light Blue */
    margin-bottom: 15px;
}

.footer-container p {
    font-size: 1rem;
    color: #b0b0b0;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: #00bcd4;
}

.footer-contact a {
    text-decoration: none;
    color: #ff5c5c;
}

.footer-contact a:hover {
    color: #ff5c5c; /* Red for hover */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00bcd4;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li a {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}
