@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css');
@import 'colors.css';

.ptt-button {
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.ptt-button:active {
    transform: scale(0.9);
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4) !important;
    filter: brightness(0.85);
    border-color: #8b0000 !important;
}

.radio-shine {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    );
}

.carousel-slide-content {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center;
    padding: 3rem 0;
    overflow: hidden;
}

.slide-bg-cozy {
    background-image: url('../assets/cold_outside.jpg');
    background-size: cover;
    color: #f0e6d2;
}

.slide-bg-hobbies {
    background-image: url('../assets/night.jpg');
    color: #f1faee;
}

.slide-bg-night {
    background-image: url('../assets/animated/starsbg.gif');
    background-color: #000;
    color: #fff;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.font-retro {
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.text-shadow-soft {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.text-shadow-hard {
    text-shadow: 2px 2px 0px #000;
}

.text-shadow-neon {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px #6f00ff;
}

.carousel-feature-img {
    max-width: 100%;
    width: 450px;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-feature-img:hover {
    transform: scale(1.02);
}

.img-style-cozy {
    border: 4px solid #3d2b2b;
    border-radius: 0.5rem;
}

.img-style-circle {
    border: 5px solid #d62828;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(214, 40, 40, 0.4);
    width: 300px;
    height: 300px;
}

.img-style-neon {
    border-radius: 0.5rem;
    width: auto;
}

@media (max-width: 768px) {
    .carousel-slide-content {
        min-height: 750px;
        align-items: flex-start;
        padding-top: 4rem;
    }

    .carousel-feature-img {
        width: 280px;
        height: 280px;
        margin-top: 2rem;
        border-radius: 1rem;
    }

    .img-style-circle {
        width: 280px;
        height: 280px;
        border-radius: 50%;
    }
}

.nav-item:hover {
    border-bottom: 1px solid var(--bs-white);
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    color: var(--bs-primary) !important;
    padding-left: 5px;
}

.social-icon-hover {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon-hover:hover {
    color: var(--bs-pink) !important;
    transform: translateY(-5px) rotate(-5deg);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
}

.card-border-info {
    border-top: 4px solid var(--bs-info) !important;
}

.card-border-primary {
    border-top: 4px solid var(--bs-primary) !important;
}

.card-bordeer-danger {
    border-top: 4px solid var(--bs-danger) !important;
}

.card-border-success {
    border-top: 4px solid var(--bs-success) !important;
}

.card-border-purple {
    border-top: 4px solid var(--bs-purple) !important;
}

.card-border-warning {
    border-top: 4px solid var(--bs-warning) !important;
}

@media (max-width: 400px) {
    .navbar-brand img {
        width: 100px;
        height: auto;
    }

    .navbar-brand span.fs-3 {
        font-size: calc(1rem + 0.6vw) !important;
    }
}

@media (max-width: 1500px) {
    .hide-social-icons {
        display: none !important;
    }
}
