/* General Styles */
body {
    color: white;
    font-family: "Rajdhani", sans-serif; /* Rajdhani font */
    font-size: 1em; /* Large font */
    margin: 0;
    padding-top: 300px;
}
body:not(.index-page) {
    background: url('ahc_collage.jpg') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Ensure the image covers the entire background */
    font-size: 1em;
}
.index-page {
    background-color: rgb(126, 22, 22); /* Burgundy red background color */
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.banner {
    width: 100%;
    height: auto;
}

/* Navbar Styles */
nav {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Slightly darker for the navbar */
    position: fixed;
    top: calc(15vw); /* Adjust based on the height of the banner */
    left: 0;
    z-index: 1000;
    transition: top 0.2s ease; /* Smooth transition for the navbar position */
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow the nav items to wrap to the next line */
}
nav ul li {
    margin: 0;
    font-size: auto;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Rajdhani", sans-serif; /* Rajdhani font for nav links */
}
nav ul li a:hover {
    background-color: rgb(126, 22, 22);
    color: white;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}
nav ul {
    display: flex;
    flex-direction: row;
}
nav ul.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul {
        display: none;
    }
    nav ul.active {
        display: flex;
    }
}

main {
    background-color: rgba(0, 0, 0, 0.8); /* Solid black background with slight transparency */
    padding: 20px;
    margin: 20px;
    border-radius: 10px; /* Rounded corners for a more appealing look */
}
.index-page main {
    text-align: center; /* Center the content in the main section */
    padding: 20px;
    background-color: transparent; /* Remove background color for index page */
    margin: 0; /* Remove margin for index page */
}
.contact-card {
    width: 80%; /* Make the contact card image large */
    height: auto;
    margin-top: 100px; /* Center the image horizontally */
}
.landing-text {
    font-size: 2em; /* Large text size */
    color: darkgray; /* Dark gray text color */
    margin-top: 40px; /* Increase margin-top to move the paragraph further down */
}
.index-page .ahc-collage {
    width: 100%; /* Make the collage image large */
    height: auto;
    margin: 40px auto; /* Center the image horizontally */
}
section {
    margin-bottom: 20px;
}
h1 {
    margin-top: 35px;
    text-align: center;
}
p {
    margin: 10px 0;
    padding-top: 25px; /* Larger gap between the bottom of the navbar and the top of the paragraph */
}
form {
    display: flex;
    flex-direction: left;
    gap: 15px; /* Space between form elements */
}
label {
    margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Rajdhani", sans-serif; /* Rajdhani font for form inputs */
}
input[type="submit"] {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Rajdhani", sans-serif; /* Rajdhani font for submit button */
}
input[type="submit"]:hover {
    background-color: #555;
}
.social-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between social media links */
}
.social-links li {
    margin: 0;
}
.social-links li a {
    color: white;
    text-decoration: none;
    font-size: 2em; /* Large font for social media links */
    font-weight: 300; /* Thin font */
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.social-links li a:hover {
    color: rgb(126, 22, 22);
}
.social-logo {
    width: 50px; /* Adjust the size of the social media logos */
    height: auto;
    margin-right: 10px; /* Space between the logo and the text */
}

/* Centering styles for emporium.html */
.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 75px; /* Space between products */
}
.product {
    flex: 1 1 calc(20% - 40px); /* Three products per row */
    margin: 20px;
    padding: 20px;
    padding-bottom: 50px;
    background-color: rgba(126, 22, 22, 0.4); /* Slightly transparent background for products */
    border-radius: 10px; /* Rounded corners for products */
    text-align: center; /* Center the product content */
    position: relative; /* Ensure the button is positioned relative to the product box */
}
.product h2 {
    font-size: 2em; /* Large font for product titles */
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%; /* Ensure the carousel takes up the full width of the product box */
    height: 200px; /* Set a fixed height for the carousel */
    overflow: hidden;
    display: flex;
    align-items: center; /* Center the images vertically */
    justify-content: center; /* Center the images horizontally */
}
.carousel img {
    max-width: 100%;
    max-height: 100%;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the images within the carousel */
}
.carousel img.active {
    display: block;
}
.carousel .prev,
.carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.718);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.carousel .prev {
    left: 0;
}
.carousel .next {
    right: 0;
}
.product p {
    font-size: 1.2em; /* Slightly smaller font for product descriptions */
    padding-bottom: 50px;
}
.product a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: absolute; /* Position the button absolutely within the product box */
    bottom: 20px; /* Position the button 20px from the bottom of the product box */
    left: 50%; /* Center the button horizontally */
    transform: translateX(-50%); /* Adjust the button's position to be centered */
}
.product a:hover {    background-color: rgb(126, 22, 22);
}

/* Styles for whereToWatch.html */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 75px; /* Space between news outlets */
}
.news-outlet {
    flex: 1 1 calc(20% - 40px); /* Three news outlets per row */
    margin: 20px;
    padding: 20px;
    background-color: rgba(126, 22, 22, 0.4); /* Slightly transparent background for news outlets */
    border-radius: 10px; /* Rounded corners for news outlets */
    text-align: center; /* Center the news outlet content */
    position: relative; /* Ensure the button is positioned relative to the news outlet box */
}
.news-outlet h2 {
    font-size: 2em; /* Large font for news outlet titles */
}
.news-outlet img {
    width: 200px; /* Adjust the size of the news outlet images */
    height: auto;
    margin: 10px 0; /* Space between the image and the text */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.news-outlet p {
    font-size: 1.2em; /* Slightly smaller font for news outlet descriptions */
}

/* Modern button styles */
.watch-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    font-family: "Rajdhani", sans-serif; /* Rajdhani font for buttons */
    margin-top: 40px; /* Add margin to create a gap between the logo and the button */
    margin-bottom: 40px;
}
.watch-button:hover {
    background-color: rgba(126, 22, 22, 0.8);
    color: white;
    box-shadow: 0 0 10px rgba(126, 22, 22, 0.8);
}

/* Additional styles for whereToWatch.html */
.where-to-watch-heading {
    font-size: 3em; /* Significantly larger font size for the heading */
    text-align: center; /* Align the heading to the center */
    margin-bottom: 0px; /* Space below the heading */
}

/* Quote styles */
.quote {
    font-size: 2em;
    color: rgba(255, 255, 255, 0.7); /* Lighter, almost translucent text */
    text-align: center;
    margin: 40px 0; /* Sizable gap between elements */
}

/* Contact heading styles */
.contact-heading {
    font-size: 3em; /* Match the size of the "Where to Watch" heading */
    text-align: left; /* Align the heading to the left */
    margin-bottom: 0px; /* Space below the heading */
}

/* Emporium heading styles */
.emporium-heading {
    text-align: center;
    font-size: 3em;
}

/* Contact image styles */
.contact-image {
    max-width: 40%;
    float: right;
}

/* Contact form styles */
.contact-form {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

/* Responsive styles for whereToWatch.html */
.where-to-watch-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.ahc-collage {
    width: 45%;
    height: auto;
    margin: 20px;
}
@media (max-width: 768px) {
    .where-to-watch-content {
        flex-direction: column;
        align-items: center;
    }
    .ahc-collage {
        width: 80%;
        margin: 20px 0;
    }
}

/* Additional styles for about.html */
.about-heading {
    margin-top: 100px; /* Move the heading down to prevent it from being cut off */
}
