/* Contact Page Specific Styles - Minimalist Virtual Production Theme */

/* Contact Page Hero Section */
.contact-hero {
    position: relative;
    width: 100vw;
    height: 40vh; /* Slightly reduced height for a cleaner look */
    overflow: hidden;
    background: #0a0f24; /* Deep dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle overlay effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Subtle dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif; /* Clean modern font */
    padding-top: 60px; /* Moves text down */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Contact Form Section */
.contact-section {
    padding: 60px 0;
    background: #ffffff; /* Clean white background */
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: #000000;
}

.contact-form .form-control {
    background: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: 6px;
    padding: 10px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: #f2f3f5; /* Slightly darker than white for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
}

.contact-form .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px; /* Creates the rounded shape */
    background: #2C3E50; /* Dark blue-gray color */
    color: #ffffff;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease-in-out;
}

.contact-form .btn:hover {
    background: #1F2C38; /* Slightly darker on hover */
    transform: scale(1.02);
}

/* Navbar Styling - Minimalist Approach */
/* STICKY NAVBAR */
.navbar {
    background: #000000 !important;
    border-bottom: 2px solid white; /* Changed from cyan to white */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Soft white glow */
}

/* Navbar Alignment Fix */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ensure the Orijinn logo stays on the left */
.navbar-brand {
    margin-right: auto;
}

/* Ensure Navbar Links Stay on the Right */
.navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

/* Navbar Logo */
.navbar-logo {
    height: 40px;
    width: auto;
}

/* Navbar Links - Default Styling */
.navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
    color: white !important;
}

/* Active Home Link */
.navbar-nav .nav-item .nav-link.active {
    font-weight: 700;
    color: white !important;
}

/* Hover Effect */
.navbar-nav .nav-item .nav-link:hover {
    color: #00d4ff !important;
    font-weight: bold;
}

/* Glowing Cyan Bar Effect */
.navbar::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 10px;
    width: 100%;
    height: 3px; /* Adjust thickness */
    background: linear-gradient(90deg, rgba(0, 212, 255, 0) 0%, rgb(129, 215, 233) 50%, rgba(0, 212, 255, 0) 100%);
    animation: glow-move 2s linear infinite;
    background-size: 200% 50%; /* Makes glow stretch further */
    filter: blur(2px); /* Blows out the glow */
}



/* Align Navbar Menu Below Burger Icon on Small Screens */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: right;
    }
    .navbar-nav {
        margin-left: auto;
        text-align: right;
    }
}
