/* Cadde DJ Academy */
/* Yazılım: Yunus Emre SAK */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Now', sans-serif;
    scroll-behavior: smooth;
    transition-timing-function: ease-in-out;
    transition-duration: 1s;
    background-color: white;
}


h1, h2, h3, p {
    margin: 0;
}

h1 {
    font-weight: 500;
    font-size: 2.5rem;
}

h2  {
    font-size: 5rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0rem;
}

h3 {
    font-size: 1.17rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}


h4 {
    font-size: 0.55rem;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 0rem;
    font-weight: normal;
}

@font-face {
font-family: 'Now Medium';
font-style: normal;
font-weight: normal;
src: local('Now Medium'), url('../fonts/Now-Medium.woff') format('woff');
}


.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    animation: fadeInBackground 0.7s ease-in-out forwards;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

@keyframes fadeInBackground {
    0% {
        filter: blur(50px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.navigation {
    position: absolute;
    top: 50px;
    right: 100px;
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}

.navigation.fade-out {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(50px);
}

.navigation ul {
    list-style: none;
    display: flex;
}

.navigation li {
    margin: 0 25px;
    opacity: 0;
    filter: blur(10px);
    animation: fadeInAndBlur 1s ease-in-out forwards;
}

.navigation a {
    text-decoration: none;
    color: white;
    font-weight: normal;
}

.navigation a img {
    width: 50px;
    height: auto;
    margin-top: -18px;
    filter: invert(1);
}

.navigation a:hover {
    color: #f39c12;
}

@keyframes fadeInAndBlur {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 0.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInAndBlur 1s ease-in-out 0.5s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-title .logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
}

.slider-text {
    margin-top: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.slider-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 8px;
    animation: fadeInAndBlur 1.2s ease-in-out 1.5s forwards;
    opacity: 0;
    border: 1px solid #333 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    transform-style: flat;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 215, 96, 0.2);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(30, 215, 96, 0.4);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 215, 96, 0.2);
    }
}

.slider-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 215, 96, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: 0;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.slider-info:hover {
    border: 1px solid rgba(30, 215, 96, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(30, 215, 96, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.slider-info-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    width: 100%;
    transition: none;
    will-change: auto;
    background: transparent !important;
}

.slider-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    transition: none;
    transform: none;
    will-change: auto;
    color: #fff !important;
}

.slider-badge {
    background: #222 !important;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: none;
    transform: none;
    will-change: auto;
    border: 1px solid #444 !important;
}

.slider-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    color: #fff !important;
    text-align: left;
    transition: none;
    transform: none;
    will-change: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.slider-subheading {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.3;
    color: #ccc !important;
    text-align: left;
    transition: none;
    transform: none;
    will-change: auto;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    transition: none;
    transform: none;
    will-change: auto;
    margin-top: 15px;
    position: relative;
    background: transparent !important;
}

.slider-announcement {
    background: #222 !important;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    width: 160px;
    text-align: center;
    border: 1px solid #444 !important;
}

.slider-cta {
    background: #333 !important;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease !important;
    border: none;
    white-space: nowrap;
    margin: 0;
    transform: none;
    will-change: auto;
    position: relative;
    z-index: 1;
    width: 160px;
    text-align: center;
    border: 1px solid #555 !important;
}

.slider-cta:hover {
    background: #444 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.slider-contact-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    transition: none;
    transform: none;
    will-change: auto;
}

.slider-icon {
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(30, 215, 96, 0.2);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1ED760;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.slider-icon i {
    position: relative;
    z-index: 1;
}

.slider-icon:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.slider-icon:hover:before {
    opacity: 1;
}

.slider-icon:hover i {
    color: #000;
}

.instagram-icon i {
    color: #ffffff;
}

.phone-icon i {
    color: #ffffff;
}

.arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
    width: 100%;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.arrow span {
    display: block;
    width: 18px;
    height: 18px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: 0;
    margin-bottom: 3px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-8px, -8px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(8px, 8px);
    }
}



.biography {
    min-height: 100vh;
    background-image: url('../new-images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.biography-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.biography-content {
    padding: 20px;
    padding-top: 20vh;
    padding-bottom: 20vh;
    padding-right: calc(55% - 360px);
    color: white;
    text-align: left;
    z-index: 1;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.animated-text {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    margin-bottom: 1.5rem;
}

.animated-text.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


.animated-text a {background: linear-gradient(
        to left,
        #fff 20%,
        #c71700 30%,
        #c71700 70%,
        #fff 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite normal;
    text-decoration: none;
}

@keyframes textShine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-text a:hover {background: linear-gradient(
        to left,
        #fff 20%,
        #c71700 30%,
        #c71700 70%,
        #fff 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 0.75s ease-in-out infinite normal;
}



.spotify {
    /*height: 100vh;*/
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-image: url('../new-images/3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 0.25px solid #585858;
}

.spotify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.spotify-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    text-align: center;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #d4b16a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0d2b4;
    max-width: 700px;
    margin: 0 auto;
}

.courses-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.course-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(212, 177, 106, 0.3);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    width: 330px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 177, 106, 0.5);
}

.course-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8c6d3f, #d4b16a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.course-card:hover:before {
    transform: scaleX(1);
}

.course-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #8c6d3f, #d4b16a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.course-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.course-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    height: 100%;
}

.course-card li {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.2rem;
}

.course-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4b16a;
    font-weight: bold;
}

.course-footer {
    margin-top: 1.2rem;
    text-align: center;
}

.course-button {
    display: inline-block;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(90deg, #8c6d3f, #d4b16a);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(140, 109, 63, 0.3);
}

.course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(140, 109, 63, 0.4);
}

.animated-ww {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;

}

.animated-ww.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}



.contact {
    height: 100vh;
    background: #eeeeee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 0.1px solid #353535;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../new-images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(0px);
    z-index: -2;
}

.contact-content{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
 /* padding-top: 10vh;
    padding-bottom: 10vh; */
}

.contact-links {
    list-style: none;
    margin: 0;
    padding: 5vh;
    text-align: center;
}

.contact-links li {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #0073da;
}

.animated-contact {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.animated-contact.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.contact img {
    display: block;
    margin: 0 auto;
    margin-top: 10vh;
    width: 150px;
    height: auto;
}


.social-links .media-kit-link:hover {
    color: #0060FF;
}

.social-links .instagram-link:hover {
    color: #C13584;
}

.social-links .spotify-link:hover {
    color: #2ecc71;
}

.social-links .apple-music-link:hover {
    color: #fc3c44;
}

.social-links .youtube-link:hover {
    color: #ff0000;
}

.social-links .soundcloud-link:hover {
    color: #ff8800;
}

.social-links .facebook-link:hover {
    color: #1877f2;
}

.social-links .twitter-link:hover {
    color: #1DA1F2;
}

.social-links .resident-advisor-link:hover {
    color: #ff4948;
}

.social-links .songkick-link:hover {
    color: #f80046;
}


.social-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    padding: 0;
    text-align: center;
    width: 100%;
}

.social-links li {
    margin: 10px 20px;
    font-size: 1rem;
    text-align: center;
}

.social-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.instructors {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.instructor {
    width: 300px;
    margin: 1rem;
    text-align: center;
}

.instructor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid white;
}

.instructor h4 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    font-weight: bold;
}

.instructor p {
    font-size: 1rem;
    color: #ccc;
}

.courses {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.course {
    width: 300px;
    margin: 1rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
}

.course h4 {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
    font-weight: bold;
    text-align: center;
}

.course p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.course ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.course li {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.course li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

@media (max-width: 1200px) {
    .courses-container {
        gap: 15px;
        padding: 0 15px;
    }
    
    .course-card {
        width: 330px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .courses-container {
        gap: 20px;
    }
    
    .course-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-title .logo {
        max-width: 250px;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
        font-size: 3rem;
    }
    
    .course-card {
        width: 100%;
        max-width: 450px;
    }
    
    .slider-info {
        padding: 15px;
        max-width: 90%;
    }
    
    .slider-info-content {
        flex-direction: column;
    }
    
    .slider-message {
        margin-bottom: 15px;
    }
    
    .slider-heading {
        font-size: 1.8rem;
    }
    
    .slider-subheading {
        font-size: 0.9rem;
    }
    
    .slider-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .slider-announcement {
        font-size: 0.65rem;
        padding: 5px 12px;
        width: auto;
        min-width: 220px;
        border-radius: 8px 8px 0 0;
    }
    
    .slider-cta {
        font-size: 0.65rem;
        padding: 7px 12px;
        width: auto;
        min-width: 220px;
        border-radius: 0 0 8px 8px;
    }
}

    @media (max-height: 700px) {
    .contact {
        height: auto;}
    }

@media (max-width: 360px) {
    .slider-info-content {
        flex-direction: column;
        gap: 6px;
    }
    
    .slider-info {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .course-card {
        padding: 15px;
    }
    
    .slider-info {
        padding: 12px;
    }
    
    .slider-info-content {
        gap: 10px;
    }
    
    .slider-message {
        gap: 3px;
    }
    
    .slider-controls {
        gap: 6px;
    }
    
    .slider-heading {
        font-size: 1.5rem;
    }
    
    .slider-subheading {
        font-size: 0.8rem;
    }
    
    .slider-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .slider-announcement {
        font-size: 0.6rem;
        padding: 4px 10px;
        width: auto;
        min-width: 200px;
        border-radius: 6px 6px 0 0;
    }
    
    .slider-cta {
        font-size: 0.6rem;
        padding: 6px 10px;
        width: auto;
        min-width: 200px;
        border-radius: 0 0 6px 6px;
    }
}

/* Eğitmenler Bölümü */
.instructors-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-image: url('../new-images/3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 0.25px solid rgba(212, 177, 106, 0.3);
}

.instructors-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
}

.instructors-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    text-align: center;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.instructors-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3rem auto;
    max-width: 1000px;
}

.instructor-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 177, 106, 0.15);
    padding: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.instructor-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8c6d3f, #d4b16a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 177, 106, 0.3);
}

.instructor-card:hover:before {
    transform: scaleX(1);
}

.instructor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 2px solid #d4b16a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.instructor-card:hover .instructor-image {
    transform: scale(1.03);
    border-width: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.05);
}

.instructor-info {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    flex-grow: 0;
}

.instructor-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #d4b16a;
    transition: all 0.3s ease;
}

.instructor-card:hover h3 {
    transform: translateY(-2px);
    color: #e9c989;
}

.instructor-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.instructor-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #aaa;
    margin-bottom: 0;
    text-align: center;
}

.instructor-collaborations {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instructor-collaborations h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #d4b16a;
    margin-bottom: 0.6rem;
    position: relative;
    display: inline-block;
}

.instructor-collaborations h4:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #d4b16a, transparent);
}

.instructor-collaborations p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #bbb;
    text-align: center;
    max-height: 150px;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 5px;
}

.instructor-collaborations p::-webkit-scrollbar {
    width: 4px;
}

.instructor-collaborations p::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.instructor-collaborations p::-webkit-scrollbar-thumb {
    background: rgba(212, 177, 106, 0.5);
    border-radius: 4px;
}

.instructor-card:hover .instructor-collaborations {
    background: rgba(20, 20, 20, 0.35);
}

.demo-image-container {
    margin-top: 4rem;
    max-width: 1000px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 177, 106, 0.3);
}

.demo-image {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    display: block;
}

.demo-image-container:hover .demo-image {
    transform: scale(1.03);
}

.demo-image-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.demo-image-container:hover:after {
    opacity: 1;
}

@media (max-width: 992px) {
    .instructors-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .instructor-card {
        padding: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
        height: auto;
    }
    
    .instructor-image {
        width: 110px;
        height: 110px;
        margin-bottom: 1rem;
    }
    
    .instructor-info {
        margin-bottom: 1rem;
    }
    
    .instructor-card h3 {
        font-size: 1.5rem;
    }
    
    .instructor-title {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }
    
    .instructor-bio {
        font-size: 0.8rem;
    }
    
    .instructor-collaborations {
        padding: 0.8rem;
    }
    
    .instructor-collaborations h4 {
        font-size: 0.9rem;
    }
    
    .instructor-collaborations p {
        font-size: 0.75rem;
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .instructor-card {
        padding: 1.2rem;
        height: auto;
    }
    
    .instructor-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.8rem;
    }
    
    .instructor-info {
        margin-bottom: 0.8rem;
    }
    
    .instructor-card h3 {
        font-size: 1.3rem;
    }
    
    .instructor-title {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .instructor-bio {
        font-size: 0.75rem;
    }
    
    .instructor-collaborations {
        padding: 0.7rem;
        margin-top: 0.6rem;
    }
    
    .instructor-collaborations h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .instructor-collaborations p {
        font-size: 0.7rem;
        line-height: 1.5;
        max-height: 100px;
    }
}

/* Slider Styles */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Siyah overlay, 0.4 opacity */
    z-index: 1;
    pointer-events: none; /* Tıklamaları geçirir */
}

.slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 2s ease-in-out;
    will-change: opacity, transform;
}

.slider-wrapper img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 0; /* z-index'i 0'a düşürelim ki overlay üstte kalsın */
}

.slider-wrapper img.next {
    z-index: 0;
}

.slider-message-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 215, 96, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-width: 90%;
}

.slider-message-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 215, 96, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: 0;
}

.slider-message-overlay:hover {
    transform: translate(-50%, -50%) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(30, 215, 96, 0.3);
}

.slider-message-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slider-message-overlay p {
    font-size: 1.2rem;
    color: #ccc;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .slider-message-overlay {
        padding: 15px 20px;
    }
    
    .slider-message-overlay h2 {
        font-size: 1.8rem;
    }
    
    .slider-message-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-message-overlay {
        padding: 12px 15px;
    }
    
    .slider-message-overlay h2 {
        font-size: 1.5rem;
    }
    
    .slider-message-overlay p {
        font-size: 0.9rem;
    }
}

@keyframes pulseAnnouncement {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(26, 115, 232, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Font Awesome ikonları için stil düzenlemeleri */
.social-icons-fixed {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  gap: 15px;
}

.social-icon-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #333333;
  text-decoration: none;
}

.social-icon-fixed:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border-color: #444444;
  text-decoration: none;
}

/* İkon boyutlarını ve stillerini özelleştirme */
.social-icon-fixed i {
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

/* Telefon ikonu için özel stil */
.social-icon-fixed[aria-label="Telefon"] i {
  transform: rotate(10deg); /* Hafif eğik görünüm */
}

/* Instagram ikonu için özel stil */
.social-icon-fixed[aria-label="Instagram"] i {
  font-size: 24px; /* Biraz daha büyük Instagram ikonu */
}

/* Responsive ayarlar */
@media (max-width: 992px) {
  .social-icons-fixed {
    top: 25px;
    right: 25px;
  }
  
  .social-icon-fixed {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .social-icons-fixed {
    top: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .social-icon-fixed {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .social-icons-fixed {
    top: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .social-icon-fixed {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 6px;
  }
}
