/* Music Artist OnePage Style */
:root {
    --primary-color: #ff3e3e; /* Modern Red */
    --secondary-color: #1a1a1a;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --accent-color: #ffd700;
}

body, .body, .page-transition-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: #000 !important;
    overflow-x: hidden;
}

section, .bg-light, .bg-white {
    padding: 100px 0;
    position: relative;
    background-color: #000 !important;
}

/* Contact section background image */
.contact-section--bg {
    position: relative;
    background-image: url("/contact.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #000;
}

.contact-section--bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.86) 60%, rgba(0,0,0,0.92) 100%);
    pointer-events: none;
}

.contact-section--bg > .container {
    position: relative;
    z-index: 1;
}

/* Bölüm başlıkları: kondense rock / sahne display (logo + Bebas/Impact ile aynı hatta) */
.section-title {
    font-family: 'Oswald', 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
    font-size: clamp(2.25rem, 4.2vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.12;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Hero Section & Carousel */
#home {
    margin-top: 0 !important;
    padding: 120px 0 60px 0 !important;
    background: #000;
    min-height: auto !important;
}

@media (max-width: 991px) {
    #home {
        padding: 90px 0 40px 0 !important;
    }
}

/* Hero Gallery */
.hero-gallery-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 991px) {
    .hero-gallery-container {
        justify-content: flex-start !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.hero-gallery-item {
    flex: 0 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    background: #222;
}

@media (max-width: 767px) {
    .hero-gallery-item {
        flex: 0 0 100%;
        height: auto;
        max-height: 450px;
    }
    
    .hero-gallery-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }
    
    .hero-gallery-container {
        gap: 10px;
        scroll-snap-type: x mandatory;
    }
    
    .hero-gallery-item {
        scroll-snap-align: center;
    }
}

.hero-gallery-item:hover {
    transform: translateY(-10px);
}

.hero-gallery-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

/* Owl Carousel Navigation & Dots for Fullscreen */
.owl-carousel.fullscreen-carousel .owl-nav button.owl-prev,
.owl-carousel.fullscreen-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 !important;
    z-index: 10;
}

.owl-carousel.fullscreen-carousel .owl-nav button.owl-prev:hover,
.owl-carousel.fullscreen-carousel .owl-nav button.owl-next:hover {
    background: rgba(255,255,255,0.3) !important;
}

.owl-carousel.fullscreen-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.owl-carousel.fullscreen-carousel .owl-nav button.owl-next {
    right: 30px;
}

.owl-carousel.fullscreen-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.owl-carousel.fullscreen-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel.fullscreen-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel.fullscreen-carousel .owl-dots .owl-dot.active span,
.owl-carousel.fullscreen-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #home {
        padding: 40px 0 !important;
    }
    
    .hero-slide-item {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Header Top Bar Styling */
.header-top {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    min-height: 45px;
}

.header-top .header-extra-info li {
    font-size: 13px;
    color: #999;
}

.header-top .header-extra-info li i {
    color: var(--primary-color);
    font-size: 14px;
}

.header-top .header-extra-info li a {
    color: #999 !important;
    transition: color 0.3s ease;
}

.header-top .header-extra-info li a:hover {
    color: #fff !important;
}

/* Header Social Icons Top Bar */
.header-top .header-social-icons li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-top .header-social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #999 !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.header-top .header-social-icons li a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Social Icons Brand Colors */
.header-top .social-icons-instagram a:hover,
.social-icons-instagram a:hover {
    color: #E4405F !important;
}

.header-top .social-icons-youtube a:hover,
.social-icons-youtube a:hover {
    color: #FF0000 !important;
}

.header-top .social-icons-spotify a:hover,
.social-icons-spotify a:hover {
    color: #1DB954 !important;
}

.header-top .social-icons-apple-music a:hover,
.social-icons-apple-music a:hover {
    color: #FA243C !important;
}

.header-top .social-icons-tiktok a:hover,
.social-icons-tiktok a:hover {
    color: #FF0050 !important;
}

/* Main Header Body */
#header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    transition: all 0.3s ease;
}

#header .header-body {
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    transition: all 0.3s ease;
}

#header.scrolled .header-body {
    background: rgba(0,0,0,0.98) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

#header.scrolled .header-top {
    display: none !important;
}

#header.scrolled .header-container {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#header.scrolled .header-logo img {
    max-width: 250px !important;
}

#header.scrolled .header-nav-main nav > ul > li > a {
    padding: 8px 16px !important;
    font-size: 22px;
}

/* Body padding to prevent content from going under fixed header */
body {
    padding-top: 115px;
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}

/* Header Container & Row Fix */
.header-container {
    width: 100%;
}

.header-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
}

.header-column {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto;
}

.header-column.justify-content-end {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

.header-column.justify-content-start {
    margin-right: auto !important;
}

/* Header Logo */
#header .header-body {
    background: #000 !important;
    border: none !important;
}

#header .header-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0;
}

#header .header-logo a {
    display: block !important;
    line-height: 1;
}

#header .header-logo img {
    max-width: 300px;
    height: auto;
    transition: all 0.3s ease;
}

/* Logo Text - Rock Style */
.logo-text {
    font-family: 'Impact', 'Bebas Neue', Arial Black, sans-serif;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff !important;
    text-shadow: 
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 0 10px rgba(255, 62, 62, 0.7),
        0 0 20px rgba(255, 62, 62, 0.5);
    transition: all 0.3s ease;
    display: block !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0;
    white-space: nowrap;
}

.logo-text:hover {
    text-shadow: 
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 0 15px rgba(255, 62, 62, 1),
        0 0 30px rgba(255, 62, 62, 0.8);
}

#header.scrolled .logo-text {
    font-size: 1.4rem;
}

/* Header Nav */
#header .header-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-height: 100% !important;
    flex-wrap: nowrap !important;
}

/* Main Navigation - Rock Artist Style */
#header .header-nav-main nav {
    display: block !important;
}

@media (max-width: 991px) {
    #header .header-nav-main nav {
        display: none !important;
    }
    #header .header-nav-main nav.show {
        display: block !important;
    }
}

#header .header-nav-main nav > ul {
    display: flex !important;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
}

#header .header-nav-main nav > ul > li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

#header .header-nav-main nav > ul > li > a {
    color: #fff !important;
    font-family: 'Bebas Neue', Arial Black, sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1.5px;
    padding: 12px 20px !important;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

#header .header-nav-main nav > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

#header .header-nav-main nav > ul > li > a:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 15px rgba(255, 62, 62, 0.8) !important;
}

#header .header-nav-main nav > ul > li > a:hover::before {
    width: 80% !important;
}

#header .header-nav-main nav > ul > li > a.active,
#header .header-nav-main nav > ul > li.active > a,
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 15px rgba(255, 62, 62, 0.8) !important;
    background: transparent !important;
    background-color: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#header .header-nav-main nav > ul > li > a.active::before,
#header .header-nav-main nav > ul > li.active > a::before,
.nav-link.active::before {
    width: 80% !important;
    background: var(--primary-color) !important;
}

/* Mobile Hamburger Button */
#header .header-btn-collapse-nav {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff !important;
    font-size: 22px;
    padding: 8px 12px;
    margin-left: 15px;
    display: none;
    transition: all 0.3s ease;
}

#header .header-btn-collapse-nav:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 62, 62, 0.4);
}

/* Mobile Menu */
@media (max-width: 991px) {
    #header .header-container {
        padding: 0 15px !important;
    }
    
    #header .header-row {
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    #header .header-column {
        flex: 0 1 auto !important;
        width: auto !important;
    }

    .header-top {
        display: none !important;
    }
    
    #header .header-nav-main {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #header .header-btn-collapse-nav {
        display: block !important;
        margin: 0 !important;
    }
    
    #header .header-nav-main nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        z-index: 9999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    #header .header-nav-main nav:not(.show) {
        display: none !important;
    }
    
    #header .header-nav-main nav.show {
        display: block !important;
    }
    
    #header .header-nav-main nav > ul {
        flex-direction: column !important;
        padding: 20px 0;
    }
    
    #header .header-nav-main nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        animation: slideInFromRight 0.3s ease forwards;
        opacity: 0;
    }
    
    #header .header-nav-main nav > ul > li:nth-child(1) { animation-delay: 0.1s; }
    #header .header-nav-main nav > ul > li:nth-child(2) { animation-delay: 0.15s; }
    #header .header-nav-main nav > ul > li:nth-child(3) { animation-delay: 0.2s; }
    #header .header-nav-main nav > ul > li:nth-child(4) { animation-delay: 0.25s; }
    #header .header-nav-main nav > ul > li:nth-child(5) { animation-delay: 0.3s; }
    #header .header-nav-main nav > ul > li:nth-child(6) { animation-delay: 0.35s; }
    
    #header .header-nav-main nav > ul > li > a {
        padding: 15px 30px !important;
        width: 100%;
        font-size: 18px;
    }
    
    #header .header-nav-main nav > ul > li > a.active {
        background: transparent;
    }

    #header .header-nav-main nav > ul > li > a::before {
        display: none !important;
    }
}

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

/* Discography */
.album-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.album-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 62, 62, 0.2);
}

.album-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #222;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-overlay--streams {
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.65rem;
    align-content: center;
}

.album-overlay--streams .discography-stream-btn {
    width: 2.9rem;
    height: 2.9rem;
    min-width: 2.9rem;
    min-height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #fff;
    background: var(--primary-color, #ff3e3e) !important;
    border: none !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3), 0 4px 14px rgba(0, 0, 0, 0.45);
    transform: scale(1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.album-overlay--streams .discography-stream-btn:hover {
    color: #fff;
    background: #e03535 !important;
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 6px 18px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.album-overlay--streams .discography-stream-btn:focus-visible {
    color: #fff;
    background: #e03535 !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-color, #ff3e3e);
}

.album-overlay--streams .discography-stream-btn i {
    font-size: 1.35em;
    color: #fff;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

@media (min-width: 768px) {
    .album-overlay--streams {
        gap: 0.7rem;
        padding: 0.75rem;
    }

    .album-overlay--streams .discography-stream-btn {
        width: 3.4rem;
        height: 3.4rem;
        min-width: 3.4rem;
        min-height: 3.4rem;
        font-size: 1.55rem;
    }
}

.album-info {
    padding: 20px;
    background: #111;
}

.discography-subsection-title {
    font-family: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8b8b8;
    margin-bottom: 0.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 62, 62, 0.4);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 992px) {
    .discography-subsection-title {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        max-width: none;
    }
}

.discography-ep-block {
    margin-bottom: 0.5rem;
}

.discography-ep-children {
    border-left: 2px solid rgba(255, 62, 62, 0.45);
    padding-left: 0.75rem;
    margin-left: 0.15rem;
}

@media (min-width: 768px) {
    .discography-ep-children {
        padding-left: 1rem;
    }
}

.album-card--child .album-img-wrapper {
    aspect-ratio: 1/1;
    max-height: 200px;
}

.album-card--child .album-info {
    padding: 10px 12px;
}

/* Tour Dates */
.tour-row {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: background 0.3s;
    border-left: 5px solid transparent;
}

.tour-row:hover {
    background: #222;
    border-left-color: var(--primary-color);
}

.tour-date {
    font-weight: 800;
    color: var(--primary-color);
}

/* Contact */
.contact-section {
    background: #0a0a0a;
}

.form-control {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
}

.form-control:focus {
    background: #222;
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

/* Footer */
#footer {
    background: #000;
}


@media (max-width: 991px) {
    #footer {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    #footer .col-lg-4 {
        margin-bottom: 25px;
    }
    
    #footer .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

/* Footer – elmas (baklava) sosyal ağlar */
.footer-diamonds-wrap {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .text-lg-center .footer-diamonds-wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-diamonds-title {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.footer-diamonds-line {
    width: 44px;
    height: 2px;
    background: var(--primary-color, #c93030);
    margin: 0 auto 1.1rem;
    border: none;
}

.footer-diamonds-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-diamond-row {
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-diamond-row + .footer-diamond-row {
    margin-top: -15px;
}

/* 3 + 2 petek: alt satırı üstteki aralıkların altına hizala */
.footer-diamond-row--honey {
    padding-left: 1.6rem;
}

@media (max-width: 576px) {
    .footer-diamond-row--honey {
        padding-left: 1.15rem;
    }

    .footer-diamond-link {
        width: 54px;
        height: 54px;
    }

    .footer-diamond-link i {
        font-size: 1.35rem;
    }
}

.footer-diamond {
    list-style: none;
    margin: 0 3px;
    padding: 0;
}

.footer-diamond-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #fff !important;
    text-decoration: none !important;
    background: #2b2b2b;
    border: 1px solid #181818;
    transform: rotate(45deg);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

.footer-diamond-link i {
    transform: rotate(-45deg);
    font-size: 1.55rem;
    line-height: 1;
    color: #fff !important;
}

.footer-diamond-link:hover,
.footer-diamond-link:focus-visible {
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.footer-diamond-link:hover i,
.footer-diamond-link:focus-visible i {
    color: #fff !important;
}

.footer-diamond.social-icons-instagram .footer-diamond-link:hover { background: #E4405F; border-color: #E4405F; }
.footer-diamond.social-icons-youtube .footer-diamond-link:hover { background: #FF0000; border-color: #FF0000; }
.footer-diamond.social-icons-spotify .footer-diamond-link:hover { background: #1DB954; border-color: #1DB954; }
.footer-diamond.social-icons-apple-music .footer-diamond-link:hover { background: #FA243C; border-color: #FA243C; }
.footer-diamond.social-icons-tiktok .footer-diamond-link:hover { background: #000000; border-color: #333; }

/* Music Section Styles */
.bg-black-2 {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.hover-red:hover {
    background-color: var(--primary-color) !important;
    transform: translateX(5px);
}

.transition {
    transition: all 0.3s ease;
}

.opacity-5 {
    opacity: 0.5;
}

/* Management Card */
.management-card-wrapper {
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

/* Rock Button Style */
.btn-rock {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-family: 'Bebas Neue', Arial Black, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

.btn-rock:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 62, 62, 0.5);
    background-color: #ff5252 !important;
}

.btn-rock:active {
    transform: translateY(-1px) scale(0.98);
}

.management-card {
    border: 2px solid rgba(255, 62, 62, 0.3);
    transition: all 0.3s ease;
}

.management-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 62, 62, 0.2);
}

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

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.hover-red-text {
    transition: color 0.3s ease;
}

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

/* Instagram Feed */
.insta-post-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.insta-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 62, 62, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.insta-post-link:hover .insta-post-overlay {
    opacity: 1;
}

.insta-post-link img {
    transition: transform 0.5s ease;
}

.insta-post-link:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
