

body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

header {
    background: white;
    color: #ed135d;
    padding: 10px 20px 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
	border-bottom: 3px solid #ed135d;
}

header h1 {
    font-family: 'Snap ITC', cursive;
    color: #ed135d;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    font-size: 2.5rem;
    animation: fade-in 2s ease;
    transition: transform 0.3s ease;
}

header:hover h1 {
    transform: scale(1.1);
}

.logo-container {
    display: flex;
    align-items: center;
	
}

header img {
    max-height: 100px;
    vertical-align: middle;
    animation: float 3s ease-in-out infinite;
	padding-right: 15px;
}

.nav-bar {
    display: flex;
    gap: 20px;
}

.nav-bar a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: #ed135d;
}

.nav-bar a:hover {
    background: #fff;
    color: #ed135d;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}



@keyframes float {
    0%, 100% {
transform: translateY(0);
    }
    50% {
transform: translateY(-10px);
    }
}

@keyframes fade-in {
    0% {
opacity: 0;
    }
    100% {
opacity: 1;
    }
}

.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(237, 19, 93, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background.jpg') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-size: 2rem;
    animation: hero-fade-in 2s ease-in;
}

.hero h2 {
    font-size: 4rem;
    margin: 0;
    animation: slide-down 1.5s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fade-in 2s ease;
}

@keyframes hero-fade-in {
    0% {
opacity: 0;
    }
    100% {
opacity: 1;
    }
}

@keyframes slide-down {
    0% {
transform: translateY(-50px);
opacity: 0;
    }
    100% {
transform: translateY(0);
opacity: 1;
    }
}

.content-section {
    padding: 60px;
    text-align: center;
	scroll-margin-top: 400px;
}

.content-section p {
    width: 60%; /* Set the width to 75% */
    margin: 0 auto 1.5em auto; /* Center the paragraph horizontally and add bottom margin */
    text-align: left; /* Align text to the left */
	line-height: 1.6; /* Increase line spacing */
}

.content-section:nth-child(even) {
    background-color: #f7f7f7;
}

.content-section h3 {
    color: #ed135d;
    font-family: 'Snap ITC', cursive;
}

.parallax {
    background: url('../images/image3.jpeg') center/cover no-repeat fixed;
    height: 75vh; /* Adjust to your desired section height */  
}



.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

.email {
    color: #ed135d;
    text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
	.content-section p {
		width: 95%; /* Set the width to 90% */
	}
}

@media (max-width: 768px) {
    .hero {
		height: 100vh;
        background: linear-gradient(to bottom, rgba(237, 19, 93, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background_768.jpg') center/cover no-repeat fixed;
	}
	.parallax {
			background: url('../images/image3_768.jpeg') center/cover no-repeat fixed;
		height: 75vh; /* Adjust to your desired section height */  
	}
	.nav-bar {
        display: none;
    }
}

@media (max-device-width: 480px) {
	.hero {
		height: 100vh;
        background: linear-gradient(to bottom, rgba(237, 19, 93, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background_480.jpg') center/cover no-repeat fixed;
	}
	.parallax {
		background: none;
		height: 75vh; /* Adjust to your desired section height */  
	}
}

@media (max-device-width: 375px) {
	.hero {
		height: 100vh;
        background: linear-gradient(to bottom, rgba(237, 19, 93, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background_375.jpg') center/cover no-repeat fixed;
	}
	.parallax {
		background: none;
		height: 75vh; /* Adjust to your desired section height */  
	}
}