@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Inter:wght@400;700&display=swap');

:root {
    --primary-color: #e53935;
    --secondary-color: #ffffff;
    --background-color: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.carousel-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-text p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1rem auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .carousel-text h1 {
        font-size: 2rem;
    }

    .carousel-text p {
        font-size: 1rem;
    }
}

.dots-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

section {
    padding: 4rem 1rem;
}

.section-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* New CSS for removing Tailwind classes */
.bg-gray-950 {
    background-color: #0d0d0d;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-md-flex {
    display: none;
}

@media (min-width: 768px) {
    .navbar-md-flex {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hidden-mobile {
    display: none;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.p-4 {
    padding: 1rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.bg-black {
    background-color: #000000;
}

.bg-opacity-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.z-50 {
    z-index: 50;
}

.transition-transform {
    transition-property: transform;
}

.transform {
    transform: none;
}

.translate-x-full {
    transform: translateX(100%);
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.flex-col {
    flex-direction: column;
}

.justify-end {
    justify-content: flex-end;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.text-xl {
    font-size: 1.25rem;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.flex-col {
    flex-direction: column;
}

.md-flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.gap-8 {
    gap: 2rem;
}

.md-w-1-2 {
    width: 50%;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-center {
    text-align: center;
}

.md-text-left {
    text-align: left;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.bg-gray-900 {
    background-color: #1a1a1a;
}

.text-gray-300 {
    color: #cccccc;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.bg-gray-800 {
    background-color: #262626;
}

.transform {
    transform: none;
}

.hover-scale-105:hover {
    transform: scale(1.05);
}

.transition-transform {
    transition-property: transform;
}

.duration-300 {
    transition-duration: 300ms;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-red-500 {
    color: #ef4444;
}

.text-gray-400 {
    color: #a3a3a3;
}

.p-8 {
    padding: 2rem;
}
