/* Dark Theme Base */
.dark-theme {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Header Styles */
.main-header {
    background: #000;
    border-bottom: 1px solid #333;
}

.navbar {
    min-height: 70px;
    padding: 1rem 0;
}

/* Mobile Header Specific Styles */
@media (max-width: 991px) {
    .navbar {
        min-height: 70px;
        padding: 0.75rem 0;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.5rem;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-brand {
        margin-right: 0 !important;
        padding: 0.25rem 0;
        z-index: 1;
    }
    
    .navbar-brand .brand-title {
        font-size: 1.25rem !important;
        white-space: nowrap;
        line-height: 1.1;
        font-weight: 700;
    }
    
    .navbar-brand .brand-subtitle {
        font-size: 0.65rem !important;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.5px;
    }
    
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Centered Navigation Styles */
.navbar .navbar-nav.d-flex.flex-row .nav-item {
    margin: 0 0.5rem;
}

.navbar .navbar-nav.d-flex.flex-row .nav-link {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Logo and Menu Horizontal Layout */
.navbar .navbar-brand {
    margin-bottom: 0;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Keep the old logo-circle for fallback if needed */
.logo-circle {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    background: transparent;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Mobile Navigation */
.offcanvas {
    width: 260px !important;
}

.offcanvas .nav-link {
    padding: 1rem;
    border-radius: 8px;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Main Content */
.main-content {
    background: #000;
    min-height: calc(100vh - 140px);
}

/* Hero Section - Controls the video area height */
.hero-section {
    /*padding: 4rem 0 6rem 0;  TOP and BOTTOM padding controls height */
    /* You can also set a fixed height like: height: 600px; */
    height: 800px;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Mobile Hero Section - Updated to allow video */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        /* Gradient will only show if video fails to load */
        background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #1a1a1a 100%);
    }
    
    /* Ensure video covers the full hero section on mobile */
    .hero-section video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Background Video Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay for better text readability */
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #007bff;  /* Same blue as header logo */
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Action Buttons */
.action-button {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Service Columns */
.service-columns {
    margin-top: 4rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Forms */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: #fff;
    font-weight: 500;
}

/* Footer */
.main-footer {
    border-top: 1px solid #333;
    margin-top: auto;
}

/* Social Media Links in Footer */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links i {
    transition: transform 0.3s ease;
}

/* Specific hover colors for each social platform */
.social-links a[href*="instagram"]:hover {
    background: #E1306C;
}

.social-links a[href*="youtube"]:hover {
    background: #FF0000;
}

.social-links a[href*="tiktok"]:hover {
    background: #000000;
    border: 2px solid #FF0050;
}

.social-links a[href*="soundcloud"]:hover {
    background: #FF5500;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Floating CTA Button */
.floating-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    color: white !important;
}

.floating-cta i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 12px 20px;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta i {
        margin: 0;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* Utility Classes */
.text-grey-4 {
    color: rgba(255, 255, 255, 0.7);
}

.text-grey-5 {
    color: rgba(255, 255, 255, 0.5);
}

.bg-black {
    background-color: #000 !important;
}

/* Page Specific Styles */
.page-container {
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
}

/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay .material-icons {
    color: #007bff;
    font-size: 40px;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 123, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail:hover .play-overlay .material-icons {
    color: white;
}

/* Footer styling */
footer {
    background-color: #212529;
    color: #ffffff;
    padding: 30px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Navbar styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
}

/* Contact section styling */
.contact-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .form-control {
    border-radius: 8px;
    padding: 12px;
}

.contact-section textarea {
    height: 150px;
    resize: vertical;
}

/* Features section styling */
.features-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.features-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.features-section .card:hover {
    transform: translateY(-5px);
}

/* Hero section styling */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    color: #212529;
    margin-bottom: 20px;
}

/* Modern styling for the website */
body {
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 60px;
}

/* Button styling */
.btn-primary {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Focus styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* HTML styles */
html {
    position: relative;
    min-height: 100%;
}

/* Floating label styles */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}