:root {
    --primary-color: #ff1c4b;
    /* Vibrant Magenta */
    --secondary-color: #ffffff;
    /* White */
    --accent-color: #e91e63;
    /* Darker Magenta */
    --text-color: #e0e0e0;
    --bg-color: #0d0012;
    /* Deep Purple/Black */
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(255, 28, 75, 0.3);
}

.section-title i {
    display: block;
    margin-bottom: 5px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.intro-text,
.carousel-slide {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    background-color: var(--bg-color);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 2px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 0, 18, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-speed);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
header {
    height: 100vh;
    background-image: url('assets/petals.png'), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center, center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 0, 18, 0.2) 0%, rgba(13, 0, 18, 0.9) 100%);
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    color: #fff;
    letter-spacing: -2px;
}

.carousel-container {
    font-size: 2.2rem;
    font-weight: 400;
    min-height: 4rem;
    position: relative;
    margin-bottom: 1rem;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    color: #ddd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-slide.active {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    margin-bottom: 2rem;
}

.hero-cta {
    padding: 15px 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 28, 75, 0.5);
}

.hero-cta:hover {
    box-shadow: 0 0 30px rgba(255, 28, 75, 0.8);
    transform: translateY(-3px);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.carousel-dot:hover {
    background-color: #fff;
}


.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    transition: color 0.3s;
}

.scroll-down:hover i {
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

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

/* Cards & Glassmorphism */
.program-item,
.dj-card,
.price-card,
.registration-form,
.hotel-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.program-item i {

    color: #ff1c4b;
    font-size: .8em;
    padding-right: 4px;

}

.program-item:hover,
.dj-card:hover,
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 28, 75, 0.3);
}

/* Program Section */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-date {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.program-item h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* DJ Section */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.dj-card {
    padding: 40px 20px;
}

.dj-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 28, 75, 0.4);
    transition: transform 0.3s;
}

.dj-card:hover .dj-photo {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 28, 75, 0.6);
}

.dj-name {
    color: #fff;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-name i {
    font-size: 0.9rem;
    color: #8b8b8b;
}

/* Pricing Section */
.price-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    width: 350px;
    text-align: center;
    padding: 50px 30px;
}

.price-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.price-features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Hotel Section */
.hotel-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    /* Capsule shape */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 28, 75, 0.4);
    width: auto;
    text-align: center;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Registration Form */
.form-question {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
    width: 30%;
    cursor: default;
}

.registration-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-group label {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 50%;
    text-align: left;
}

.registration-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 10px;
}

.registration-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 28, 75, 0.2);
}

/* Footer */
footer {
    background-color: #050008;
    background-image: url('assets/petals.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;


    color: #666;
    padding: 2em 0;
    border-top: 1px solid #222;
    text-align: center;

}

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

.footer-content .credits {
    font-size: 0.7rem;

    ;
}

.footer-content .credits a:hover {
    color: #ff1c4b;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 3rem;
    margin-top: 3rem;

}

.social-links {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social-links a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        font-size: 2rem;
        background-attachment: scroll;
    }

    .logo {
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .carousel-container {
        font-size: 1.4rem;
        min-height: 5rem;
    }

    .section-title {
        font-size: 2rem !important;
        /* Force override */
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle .bar {
        background-color: var(--primary-color);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(13, 0, 18, 0.98);
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        z-index: 998;
        /* Just below the toggle button */
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .dj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dj-card {
        padding: 20px 10px;
    }

    .dj-photo {
        width: 100px;
        height: 100px;
    }

    .dj-name {
        font-size: 1.1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 28, 75, 0.4);
}




/******************* BARIS *************************/
form {
    position: relative
}

form input,
form textarea {
    margin: .5em auto;
    border-radius: 4px;
    padding: .5em;
    color: #23a6da
}

form strong {
    color: #87ceeb;
    font-size: 1.2em
}

form select {
    height: auto;
    display: block;
    padding: 6px;
    cursor: pointer !important;
    background: url(../images/down.png) 98% no-repeat;
    -webkit-appearance: none;
    -webkit-border-radius: 4px
}

form select option {
    background: #fff;
    display: block
}

form input[type=checkbox],
form input[type=radio] {
    display: inline !important;
    width: auto;
    margin-right: .5em
}

form label {
    display: inline-block;
    margin-right: .5em;
    cursor: pointer;
    margin-top: 1em;
    padding-left: .1em
}

form textarea {
    height: 200px;
    width: 100% !important;
    border: 1px solid silver;
    border-radius: 4px
}

.bookBtn,
.registerButton {
    border: 0;
    width: 200px
}

input:required:valid {
    background-image: url(../img/checked2.gif);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 80px
}

.registerButton {
    border-radius: 50px
}

.registerButton:hover,
a.buttonLink:hover {
    background: #0678e3
}

.registerButton:disabled {
    background: silver
}

.bookBtn {
    border-radius: 10px;
    font-size: .7em;
    line-height: 4em
}


section.about-izmir {
    background-color: #190c1e;

    padding: 4em 1em;
}

section.about-izmir .container {

    padding: 2em 0;
}

section.about-izmir .container p {

    padding: 1em 0;
}

section.about-izmir .container a {
    color: #ff1c4b;
    text-decoration: none;
}