/* home Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    }
    html{
    overflow-x: hidden; /* Prevent horizontal scrolling */
    }
    body {
    color: #ffffff;
    overflow: hidden;
    background: #1c1c1c;
    
    
    }
    .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    
    }
    
    .container-tab {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        
        }
    
    
    .container-header {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 45px;
    }
    
    h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    }
    
    /* Hero Section */
    .hero {
    /* background: linear-gradient(45deg, #6a11cb, #2575fc);*/
    background:  black;
    color: #fff;
    display: none;
    justify-content: space-between; /* This will space out the content */
    position: relative; /* Ensures absolute positioning of logo */
    align-items: center;
    text-align: center;
    padding: 20px;
    }
    .hero h1 {
    font-size: 3rem;
    }
    .hero span {
    color: #ff69b4;
    }
    .hero p {
    margin: 10px 0 20px;
    }
    .hero .logo img {
      height: 70px;
      width: 180px;
      position: absolute;
      top: 12px;
      left: 15px;
    }
    
    /* Ensure other content is spaced out correctly */
    .hero h1, .hero p, .hero .btn {
    margin-left: 80px; /* Create space for the logo */
    text-align: left; /* Align text to the left */
    }
    
    
    .container-header {
      background: #000000;
      padding: 10px 20px; /* Adjust padding for spacing */
      display: flex;
      align-items: center;
      justify-content: space-between; 
    }
    
    
    /* Navbar */
    .navbar {
      background: #000000;
      padding: 10px 20px; /* Adjust padding for spacing */
      display: flex;
      align-items: center;
      justify-content: space-between; /* Push logo and tabs to opposite ends */
    }
    .logo {
      width: 50px; /* Adjust the logo size */
      height: 50PX;
    }
    .navbar a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1.1rem;
      position: relative;
    }
    .navbar a:hover {
      color: #ff000d;
    }
    
    /* Dropdown */
    .navbar .dropdown {
    position: relative;
    display: inline-block;
    }
    .navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 5px;
    text-align: left;
    }
    .navbar .dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    }
    .navbar .dropdown-content a:hover {
      background-color:  #ff000d;
        /*background: linear-gradient(45deg, #6a11cb, #2575fc);*/
        color: #fff;
    }
    .navbar .dropdown:hover .dropdown-content {
        display: block;
    }
    
    
    .dropdown-submenu {
      position: relative;
    }
    
    .dropdown-content-right {
      display: none;
      position: absolute;
      background-color: #333;
      min-width: 150px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border-radius: 5px;
      top: 0;
      left: 100%;
      z-index: 1;
    }
    
    .dropdown-submenu:hover .dropdown-content-right {
      display: block;
    }
    
    /* Footer */
    .footer {
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px 0;
      background-color: rgba(0, 0, 0, .9);
      text-align: center;
      --tw-text-opacity: 1;
      color: rgb(156 163 175/var(--tw-text-opacity,1))
    }
    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pushes elements to left and right */
    align-items: center; /* Align vertically centered */
    padding: 0 20px; /* Horizontal padding */
    }
    
    /* Left-aligned text */
    .footer-text-left {
    color: #9ca3af; /* Gray color */
    font-size: 14px;
    margin: 0;
    }
    
    /* Right-aligned text */
    .footer-text-right {
    color: #9ca3af; /* Gray color */
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth hover transition */
    margin: 0;
    }
    
    .footer-text-right:hover {
    color: #a855f7; /* Purple hover effect */
    }
    
    
    /* Mobile Menu */
    .mobile-menu {
    display: none;
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 1000;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    
    }
    .mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    }
    .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen */
    width: 250px;
    height: 100vh;
    background: #333;
    border-radius: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 10px;
    z-index: 999;
    transition: left 0.3s ease; /* Smooth slide effect */
    }
    
    .mobile-nav.show {
    left: 0; /* Slide into view */
    }
    
    .mobile-nav a {
    display: block;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #444;
    }
    .mobile-nav a:last-child {
    border-bottom: none;
    }
    .mobile-nav a:hover {
    background: #ff69b4;
    }
    
    
    /* Effects */
    
    #particles, #vignette {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    bottom: 0;
    right: 0;
    z-index: -2;
    }
    
    #vignette {
    box-shadow: 0 0 800px rgba(0,0,0,0.9) inset;
    z-index: -1;
    }
    
    /* Responsive Design */
    
    
    
    section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    
    
    .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 780px;
    padding: 0 35px;
    text-align: justify;
    margin: 0 auto;
    }
    
    .info p {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
    }
    
    .movie-night {
    background: linear-gradient(225deg, #ff3cac 0%, #784ba0 50%, #2b86c5 100%);
    }
    
    .btn {
    display: block;
    padding: 10px 40px;
    margin: 10px auto;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    color: #784ba0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    }
    
    .btn:hover {
    animation: gelatine 0.5s 1;
    }
    
    @keyframes gelatine {
    0%,
    100% {
    transform: scale(1, 1);
    }
    25% {
    transform: scale(0.9, 1.1);
    }
    50% {
    transform: scale(1.1, 0.9);
    }
    75% {
    transform: scale(0.95, 1.05);
    }
    }
    

    
    @keyframes animate {
    0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
    }
    
    100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
    }
    }
    
    /* Media Queries for Responsiveness */
    
    @media (max-width: 1024px) {
    .content {
    flex-direction: column;
    width: 90%;
    gap: 20px;
    }
    
    .info {
    padding: 0 20px;
    }
    

    
    .btn {
    width: 40%;
    }
    
    
    
    }
    
    
    @media (max-width: 768px) {
    
    .info p {
    font-size: 0.9rem;
    }
    

    
    .navbar {
    display: none;
    }
    .mobile-menu {
    display: block;
    }
    
    
    .footer-container {
      max-width: 1200px;
      flex-direction: column;
      text-align: center;
    }
    
    .container {
    padding: 0 15px; /* Add padding to prevent overflow */
    }

    .hero{
      display: flex;
    }

      
}
    

.section-content {
    display: flex;
    flex-direction: column;         /* Stacks content vertically */
    justify-content: flex-start;    /* Aligns items at the top */
    align-items: center;            /* Centers items horizontally */
    padding: 150px;                  /* Adjusted padding */
    gap: 20px;                      /* Space between items */
}

.section-content div {
    width: 90%;                     /* Adjusted for better responsiveness */
    max-width: 800px;               /* Ensure it doesn't stretch too wide on larger screens */
    margin-bottom: 20px;            /* Space between individual sections */
}

.cta-button {
    display: inline-block;
    background-color: #d6171f;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.2em;               /* Base font size */
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s;
    width: 300px;

    /* Centering horizontally */
    margin-left: auto;
    margin-right: auto;
    display: block;                 /* This makes the button a block-level element for centering */
}

.cta-button:hover {
  background-color: #cb2f31 ;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .section-content {
        padding: 20px; /* Reduced padding for mobile screens */
    }

    .section-content div {
        width: 100%;  /* Full width on smaller screens */
    }

    .cta-button {
        font-size: 1em;  /* Slightly smaller button text */
        padding: 10px 20px; /* Adjusted padding for better fit */
    }
}
