/* Font */

body {
    font-family: "Inter", sans-serif;

    line-height: 1.6;

    scroll-behavior: smooth;
}

/* Color Variables */

:root {
    --primary-color: hsl(217, 91%, 60%);

    --secondary-color: hsl(271, 81%, 56%);

    --accent-color: hsl(188, 94%, 43%);

    --dark-bg: hsl(220, 13%, 9%);

    --text-light: hsl(210, 40%, 98%);

    --text-muted: hsl(217, 10%, 65%);

    --glass-bg: rgba(255, 255, 255, 0.1);

    --glass-border: rgba(255, 255, 255, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme by default */

body {
    background-color: var(--dark-bg);

    color: var(--text-light);
}

/* Utility Classes */

.py-6 {
    padding-top: 6rem;

    padding-bottom: 6rem;
}

.min-vh-100 {
    min-height: 100vh;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* Text Gradients */

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}

/* Background Gradients */

.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Glass Effects */

.glass-card {
    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-radius: 1rem;
}

.glass-navbar {
    background: transparent;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    transition: var(--transition);
}

.glass-navbar.scrolled {
    background: var(--glass-bg);

    border-bottom: 1px solid var(--glass-border);
}

.glass-badge {
    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    color: var(--text-light);

    padding: 0.5rem 1rem;

    border-radius: 2rem;

    font-size: 0.875rem;
}

.glass-badge-sm {
    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    color: var(--text-light);

    padding: 0.25rem 0.75rem;

    border-radius: 1rem;

    font-size: 0.75rem;
}

.glass-input {
    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    color: var(--text-light);
}

.glass-input::placeholder {
    color: var(--text-muted);
}

.glass-input:focus {
    background: var(--glass-bg);

    border-color: var(--primary-color);

    color: var(--text-light);

    box-shadow: 0 0 0 0.25rem rgba(72, 118, 255, 0.25);
}

/* Buttons */

.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    border: none;

    color: white;

    font-weight: 600;

    transition: var(--transition);

    box-shadow: 0 4px 15px rgba(72, 118, 255, 0.3);
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(72, 118, 255, 0.4);

    color: white;
}

.btn-glass {
    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    color: var(--text-light);

    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);

    color: var(--text-light);

    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;

    border: 1px solid transparent;

    color: var(--text-muted);

    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);

    color: var(--text-light);
}

/* Navbar */

.nav-link-custom {
    color: var(--text-light);

    font-weight: 500;

    position: relative;

    transition: var(--transition);
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

.nav-link-custom::after {
    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: var(--transition);
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Hero Section */

.hero-section {
    position: relative;

    background: linear-gradient(rgba(13, 13, 18, 0.8), rgba(13, 13, 18, 0.6)), url("../img/hero-bg-rgw6NYvh.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}

.hero-bg {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(rgba(13, 13, 18, 0.8), rgba(13, 13, 18, 0.6));

    z-index: 1;
}

.hero-effects {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 2;
}

.floating-gradient {
    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.3;

    animation: float 6s ease-in-out infinite;
}

.gradient-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    top: 25%;

    left: 25%;

    animation-delay: 0s;
}

.gradient-2 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));

    bottom: 25%;

    right: 25%;

    animation-delay: 3s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;

        transform: translateY(30px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

/* Pulse Dots */

.pulse-dot {
    width: 8px;

    height: 8px;

    background: var(--primary-color);

    border-radius: 50%;

    animation: pulse 2s infinite;
}

.pulse-dot-secondary {
    width: 8px;

    height: 8px;

    background: var(--secondary-color);

    border-radius: 50%;

    animation: pulse 2s infinite;
}

.pulse-dot-accent {
    width: 8px;

    height: 8px;

    background: var(--accent-color);

    border-radius: 50%;

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Indicator */

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;

    height: 40px;

    border: 2px solid rgba(255, 255, 255, 0.3);

    border-radius: 15px;

    display: flex;

    justify-content: center;

    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;

    height: 12px;

    background: rgba(255, 255, 255, 0.6);

    border-radius: 2px;

    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Hover Effects */

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
}

.hover-primary {
    transition: var(--transition);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Studio Section */

.studio-image {
    transition: var(--transition);
}

.studio-bg-effect-1 {
    position: absolute;

    top: -2rem;

    right: -2rem;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    border-radius: 1rem;

    opacity: 0.2;

    filter: blur(40px);

    z-index: -1;
}

.studio-bg-effect-2 {
    position: absolute;

    bottom: -2rem;

    left: -2rem;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));

    border-radius: 1rem;

    opacity: 0.2;

    filter: blur(40px);

    z-index: -1;
}

/* Service Effects */

.service-bg-effect {
    position: absolute;

    top: -5rem;

    right: -5rem;

    width: 10rem;

    height: 10rem;

    border-radius: 50%;

    opacity: 0.1;

    filter: blur(60px);

    transition: var(--transition);
}

.card:hover .service-bg-effect {
    opacity: 0.2;
}

/* Project Effects */

.project-image {
    transition: var(--transition);
}

.project-overlay {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.7);

    opacity: 0;

    transition: var(--transition);
}

.card:hover .project-overlay {
    opacity: 1;
}

.card:hover .project-image {
    transform: scale(1.1);
}

.gradient-dot {
    width: 12px;

    height: 12px;

    border-radius: 50%;
}

/* Testimonial Effects */

.testimonial-bg-effect {
    position: absolute;

    top: -5rem;

    right: -5rem;

    width: 10rem;

    height: 10rem;

    border-radius: 50%;

    opacity: 0.1;

    filter: blur(60px);

    transition: var(--transition);
}

.card:hover .testimonial-bg-effect {
    opacity: 0.2;
}

.avatar {
    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-weight: 600;

    font-size: 0.875rem;
}

/* Contact Icons */

.contact-icon {
    width: 48px;

    height: 48px;

    border-radius: 0.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.25rem;
}

/* Background Utilities */

.bg-muted-light {
    background-color: rgba(255, 255, 255, 0.02);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.02);
}

/* Text Colors */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Responsive Design */

@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }

    .floating-gradient {
        width: 250px;

        height: 250px;
    }

    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .py-6 {
        padding-top: 4rem;

        padding-bottom: 4rem;
    }
}


.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: white;
}