body {
   	font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1b1b24; /* Dark Background color as default text color */
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-animation: 0.6s fade-in;
}

/* Full-screen Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width:100%;
    overflow: hidden;
}

#hero video {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    color: #ffffff; /* White */
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#hero p.lead {color: #ffffff} /* White */

/* Button styles */
.btn {
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background: linear-gradient(45deg, #4e9efe, #b721ff); /* Soft Blue to Electric Purple */
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #42acfd, #7a6afe); /* Nightlife Gradient */
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(45deg, #ff7c51, #f76b1c); /* Melon to Orange */
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #ff5864, #ff7c51); /* Coral Pink to Melon */
    color: #fff;
}

.btn-dark {
    background: #1b1b24; /* Dark Background */
    color: #fff;
}

.btn-dark:hover {
    background: #0f0f12; /* Darker shade of the Dark Background */
    color: #fff;
}

/* Content Sections */
.py-5 {
    padding: 5rem 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

ul li::before {
    content: "\2022";
    color: #0099ff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden
}

/* Vertically center text in each section */
.container .row {
    align-items: center; /* vertically centers the content of the row */
}


/* Error Page Styles */
#error-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f7f7;
    text-align: center;
}

#error-section h1 {
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

#error-section p {
    font-weight: 400;
    color: #7F8C8D;
    margin-bottom: 30px;
}
/* Terms and Privacy Page Styles */
#terms-section, #privacy-section {
    font-family: 'Montserrat', sans-serif;
}

#terms-section h1, #privacy-section h1 {
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

#terms-section h2, #privacy-section h2 {
    font-weight: 600;
    color: #34495E;
    margin-top: 30px;
}

#terms-section p, #privacy-section p {
    font-weight: 400;
    color: #7F8C8D;
    margin-bottom: 20px;
}


/* For the individual columns within the press kit */
.press-kit-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This keeps maximum space between image and button */
    align-items: center; /* This centers the content horizontally */
}

/* Fixed size for the images */
.press-kit-col img {
    height: 250px;  
    width: auto;    
    max-width: 80%;
    padding:2rem;  
    object-fit: cover; 
}


/* Increasing padding inside pricing cards */
.pricing-card {
    padding: 20px; /* Adjust this as needed */
    border: 1px solid #ddd; /* A light border to give some structure */
    border-radius: 5px; /* Rounded corners for aesthetics */
    margin-bottom: 20px; /* Spacing between cards when stacked on smaller screens */
}

.pricing-card h3,
.pricing-card p {
    margin-top: 15px; /* Additional spacing for elements within card */
    margin-bottom: 15px; /* Additional spacing for elements within card */
}

/* Ensure consistent alignment for list items */
.pricing-card ul {
    list-style-position: outside;
    padding-left: 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    overflow: hidden !important
   
    
}

/* If you need to further style the button (or provide more space), you can add styles here */
.pricing-card .btn {
    margin-top: 15px; /* Spacing above button */
}



@media (max-width: 576px) {
	
	body {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

 #hero *, #hero h1, #hero p {
        text-align: center;
    }


	img, video {
    max-width: 100%;
    height: auto;
}

    .container {
        padding: 0 15px;
    }

    ul li {
        margin-bottom: 8px;
        padding-left: 20px;
        overflow: hidden !important
    }

    .py-5 {
        padding: 4rem 0;
    }

    h1, h2 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}


