/* Navigation Bar */
.modern-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd; /* Subtle border for separation */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600; /* Highlighting StreamMaster Pro brand */
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    font-size: 16px;
}

.nav-links a {
    text-decoration: none;
    color: #cac6c6; /* Matches the default text color */
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-decoration: underline; /* Clean hover effect */
}

/* About Us Section */
.about-section {
    padding: 40px;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background-color: #f9f9f9; /* Light background for contrast */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff6600;
}

.about-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Open Nav Style */
.side-nav.open {
    right: 0; /* Slide in */
}

/* Body Styling */
body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background */
    color: #fff; /* Light text for contrast */
    font-family: Arial, sans-serif;
}

/* Header */


.mystic-header h1 {
    font-size: 36px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    background: url('Images/header.gif') no-repeat center center/cover; /* Replace with your background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent overlay for mystic look */
}

.hero-section h1 {
    font-size: 48px;
    color: #ff6600; /* Fiery glow effect */
    margin: 0;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 18px;
    color: #ddd; /* Softer contrast for subtext */
}

.cta {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta:hover {
    background-color: #555;
    transform: scale(1.1); /* Hover effect */
}

/* Content Columns */
.content-section {
    padding: 40px;
    background-color: #252525; /* Slightly lighter dark for content */
    text-align: center;
}

.content-section h3 {
    font-size: 28px;
    color: #ff6600;
}

.content-columns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.column {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.column h4 {
    font-size: 22px;
    color: #ff6600;
    margin-bottom: 10px;
}

.column p {
    font-size: 14px;
    color: #ddd;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  footer .social-icons {
    margin: 1rem 0;
  }

  footer .social-icons a {
    margin: 0 10px;
    display: inline-block;
  }

  footer .social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }

  footer p {
    color: #ccc;
    font-size: 0.9rem;}
