* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #faf7f8;
    color: #333;
}


/* HEADER */

header {
    height: 75px;
    padding: 0 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #1d1a1b;
    color: white;

    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 21px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: #d6a4b8;
}


/* HERO */

.hero {
    min-height: 600px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,.58),
            rgba(0,0,0,.58)
        ),
        linear-gradient(
            135deg,
            #8d536e,
            #34232c
        );

    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero span,
.section-title span {
    color: #a55d7b;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero span {
    color: #f1ccd9;
}

.hero h1 {
    font-size: 52px;
    margin: 20px 0;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;

    padding: 15px 35px;

    background: #a55d7b;
    color: white;

    text-decoration: none;

    border-radius: 30px;

    font-weight: bold;
}

.hero-btn:hover {
    background: #854862;
}


/* GENEL SECTION */

.section {
    padding: 90px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 34px;
    margin-top: 12px;
}


/* ORGANİZASYON KARTLARI */

.event-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.event-card {
    padding: 35px 25px;

    background: white;

    text-align: center;

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(0,0,0,.07);

    transition: .3s;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.event-card p {
    color: #777;
    line-height: 1.6;
}


/* =========================
   5 PAKET - TEK SATIR
========================= */

.package-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 10px;

    box-sizing: border-box;
}

.package {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;

    padding: 18px 10px;

    background: white;

    border-radius: 12px;

    text-align: center;

    box-shadow:
        0 4px 15px rgba(0,0,0,.10);

    overflow: hidden;
}

.package h3 {
    margin: 0 0 10px;

    font-size: 16px;

    line-height: 1.2;

    overflow-wrap: break-word;
}

.package p {
    margin: 6px 0;

    font-size: 12px;

    line-height: 1.35;

    overflow-wrap: break-word;
}

.package ul {
    padding: 0;
    margin: 10px 0;

    list-style: none;
}

.package li {
    margin: 5px 0;

    font-size: 11px;

    line-height: 1.3;

    overflow-wrap: break-word;
}

.package .price {
    font-size: 16px;

    font-weight: bold;

    margin: 10px 0;
}

.package button {
    width: 100%;

    padding: 8px 5px;

    font-size: 11px;

    border: none;

    border-radius: 18px;

    cursor: pointer;

    box-sizing: border-box;
}


/* KÜÇÜK EKRAN */

@media (max-width: 900px) {

    .package-grid {
        gap: 6px;
    }

    .package {
        padding: 14px 6px;
    }

    .package h3 {
        font-size: 13px;
    }

    .package p {
        font-size: 10px;
    }

    .package li {
        font-size: 9px;
    }

    .package .price {
        font-size: 13px;
    }

}
/* PAKETLERİ DÜZELT */

.packages .package-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;

    box-sizing: border-box;
}

.packages .package {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;

    padding: 18px 10px;

    background: white;
    border-radius: 12px;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0,0,0,.10);

    overflow: hidden;
}

.packages .package h3 {
    font-size: 15px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.packages .package .price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.packages .package ul {
    padding: 0;
    margin: 10px 0;
    list-style: none;
}

.packages .package li {
    font-size: 11px;
    line-height: 1.35;
    margin: 5px 0;
    overflow-wrap: break-word;
}

.packages .package button {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 4px;
    font-size: 11px;
}


/* REZERVASYONUN BOZULMASINI ENGELLE */

.reservation {
    width: 100%;
    clear: both;
}

.reservation-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* TELEFON */

@media (max-width: 600px) {

    .package-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 3px;
    }

    .package {
        padding: 10px 3px;

        border-radius: 7px;
    }

    .package h3 {
        font-size: 9px;
    }

    .package p {
        font-size: 7px;
    }

    .package li {
        font-size: 7px;
    }

    .package .price {
        font-size: 9px;
    }

    .package button {
        padding: 5px 2px;

        font-size: 7px;
    }

}


/* REZERVASYON SONUCU */

#sonuc {
    display: none;

    margin-top: 30px;

    padding: 25px;

    border-radius: 12px;

    background: #e9f7ef;

    line-height: 1.9;
}

#sonuc h3 {
    color: #227542;

    margin-bottom: 10px;
}

.fiyat {
    font-size: 22px;

    font-weight: bold;
}


/* FOOTER */

footer {
    padding: 40px 20px;

    background: #1d1a1b;

    color: white;

    text-align: center;
}

footer p {
    margin-top: 10px;

    color: #ccc;
}


/* MOBİL */

@media (max-width: 900px) {

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero h1 {
        font-size: 40px;
    }
}


@media (max-width: 600px) {

    header {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .reservation-box {
        padding: 25px;
    }
}
/* =========================
   GALERİ KUTULARI
========================= */
.gallery {
    padding: 55px 5%;
    background: #faf7f8;
}

.gallery-title {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-title span {
    color: #a55d7b;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.gallery-title h2 {
    font-size: 30px;
    margin: 8px 0;
}

.gallery-title p {
    color: #777;
}


/* BRIDE VE EVLİLİK TEKLİFİ */

.gallery-categories {
    width: 100%;
    max-width: 900px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.category-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 5px 20px rgba(0,0,0,.12);
        
}
.category-card > img {
    width: 100%;
    height: 280px;

    object-fit: cover;
    display: block;
}


/* YAZI VE BUTON */

.category-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 18px;

    color: white;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.category-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-content button {
    padding: 9px 16px;

    border: none;
    border-radius: 20px;

    background: #a55d7b;

    color: white;

    cursor: pointer;
}


/* FOTOĞRAFLAR */

.inside-photos {
    display: none;

    width: 100%;

    padding: 12px;

    background: white;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    box-sizing: border-box;
}

.inside-photos.active {
    display: grid;
}

.inside-photos img {
    width: 100%;
    height: 140px;

    object-fit: cover;

    border-radius: 10px;

    display: block;
}


/* TELEFON */

@media (max-width: 600px) {

    .gallery-categories {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-card {
        height: 210px;
    }

    .category-content {
        padding: 10px;
    }

    .category-content h2 {
        font-size: 15px;
    }

    .category-content button {
        padding: 7px 10px;
        font-size: 11px;
    }

}/* SADECE PAKETLERİ DÜZENLE */

.packages .package-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.packages .package {
    width: 100%;
    min-width: 0;
    padding: 15px 8px;
    overflow: hidden;
}

.packages .package h3 {
    font-size: 14px;
    line-height: 1.2;
}

.packages .package li {
    font-size: 10px;
    line-height: 1.3;
}

.packages .package .price {
    font-size: 15px;
}

.packages .package button {
    width: 100%;
    font-size: 10px;
    padding: 8px 3px;
}
/* ALT SİYAH ALANI KALDIR */
footer {
    display: none;
}
/* REZERVASYON DÜZENİ */

.reservation {
    width: 100%;
    padding: 60px 8%;
    clear: both;
}

.reservation-box {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
/* =========================
   REZERVASYON TASARIMI
========================= */

.reservation {
    width: 100%;
    padding: 80px 8%;

    background: linear-gradient(
        135deg,
        #f3dce5,
        #ead0dc,
        #f8eef2
    );

    clear: both;
}


/* REZERVASYON KUTUSU */

.reservation-box {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 45px;

    background: white;

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(80,40,55,.15);
}


/* BAŞLIK */

.reservation .section-title {
    margin-bottom: 35px;
}

.reservation .section-title span {
    font-size: 14px;
}

.reservation .section-title h2 {
    font-size: 32px;
}


/* FORM YAZILARI */

.reservation .form-group label {
    font-size: 16px;
    font-weight: bold;
}


/* INPUT VE SELECT */

.reservation .form-group input,
.reservation .form-group select {
    padding: 15px;

    font-size: 15px;

    border: 1px solid #d8b9c6;

    border-radius: 10px;
}


/* REZERVASYON BUTONU */

.reservation .submit-btn {
    padding: 16px;

    font-size: 16px;

    border-radius: 30px;

    background: #a55d7b;
}

.reservation .submit-btn:hover {
    background: #854862;
}


/* TELEFON */

@media (max-width: 600px) {

    .reservation {
        padding: 55px 15px;
    }

    .reservation-box {
        padding: 25px 18px;
    }

    .reservation .section-title h2 {
        font-size: 25px;
    }

    .reservation .form-group label {
        font-size: 14px;
    }

}
/* ADMIN */

.admin-login {
    max-width: 420px;
    margin: 80px auto;
    padding: 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.10);
}

.admin-login input {
    width: 100%;
    padding: 13px;
    margin: 8px 0;
}

.admin-login button {
    width: 100%;
    padding: 13px;
    margin-top: 10px;
}

.admin-panel {
    padding: 60px 5%;
}

.admin-title {
    text-align: center;
    margin-bottom: 35px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.stat-card {
    background: white;
    padding: 22px;
    text-align: center;
    border-radius: 14px;
}

.stat-card strong {
    display: block;
    font-size: 28px;
}

.admin-rezervasyon {
    background: white;
    padding: 22px;
    margin-bottom: 15px;
    border-radius: 15px;
}

.admin-rezervasyon p {
    margin: 7px 0;
}

.admin-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-buttons button {
    padding: 10px 15px;
    cursor: pointer;
}

.dates-box,
.reservation-list {
    margin-top: 30px;
}
/* =========================
   ADMIN DURUM RENKLERİ
========================= */

.durum-bekliyor {
    color: #d97706;
    font-weight: bold;
}

.durum-onaylandi {
    color: #16a34a;
    font-weight: bold;
}

.durum-iptal {
    color: #dc2626;
    font-weight: bold;
}
.admin-cikis-btn {
    width: auto;
    margin-top: 15px;
    padding: 10px 22px;

    border: none;
    border-radius: 20px;

    background: #1d1a1b;
    color: white;

    font-size: 14px;
    font-weight: bold;

    cursor: pointer;
}

.admin-cikis-btn:hover {
    opacity: 0.8;
}
.admin-filtreler {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 20px 0 30px;
}

.admin-filtreler button {
    padding: 10px 16px;

    border: none;
    border-radius: 20px;

    background: white;

    box-shadow: 0 3px 10px rgba(0,0,0,.08);

    cursor: pointer;

    font-weight: bold;
}

.admin-filtreler button:hover {
    background: #f3e5eb;
}
.admin-buttons .sil-btn {
    background: #b91c1c;
    color: white;
}

.admin-buttons .sil-btn:hover {
    background: #991b1b;
}
.admin-buttons .whatsapp-btn {
    background: #25d366;
    color: white;
}

.admin-buttons .whatsapp-btn:hover {
    opacity: 0.85;
}
/* =========================
   MOBİL UYUMLULUK
========================= */

@media (max-width: 768px) {

    /* HEADER */

    header {
        height: auto;
        min-height: 70px;
        padding: 15px 18px;

        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        text-align: center;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    nav a {
        font-size: 12px;
        padding: 6px 8px;
    }


    /* HERO */

    .hero {
        min-height: 430px;
        padding: 45px 18px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 14px;
    }


    /* GALERİ */

    .gallery {
        padding: 45px 12px;
    }

    .gallery-categories {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card > img {
        height: 240px;
    }

    .category-content h2 {
        font-size: 20px;
    }

    .inside-photos {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .inside-photos img {
        height: 110px;
    }


    /* HİZMETLER */

    .event-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 55px 15px;
    }

    .section-title h2 {
        font-size: 27px;
    }


    /* PAKETLER */

    .packages {
        padding: 55px 8px;
    }

    .packages .package-grid {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .packages .package {
        padding: 14px 7px;
    }

    .packages .package h3 {
        font-size: 13px;
    }

    .packages .package .price {
        font-size: 13px;
    }

    .packages .package li {
        font-size: 9px;
        line-height: 1.3;
    }

    .packages .package button {
        font-size: 9px;
        padding: 7px 3px;
    }


    /* LOVE 5. PAKETİ ORTALA */

    .packages .package:nth-child(5) {
        grid-column: 1 / -1;

        width: 50%;
        justify-self: center;
    }


    /* REZERVASYON */

    .reservation {
        padding: 55px 12px;
    }

    .reservation-box {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .reservation .section-title h2 {
        font-size: 24px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select {
        padding: 13px;
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 14px;
    }


    /* ADMIN */

    .admin-panel {
        padding: 35px 12px;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 15px 8px;
    }

    .stat-card strong {
        font-size: 22px;
    }

    .stat-card span {
        font-size: 11px;
    }

    .admin-filtreler {
        justify-content: center;
    }

    .admin-filtreler button {
        font-size: 11px;
        padding: 8px 11px;
    }

    .admin-rezervasyon {
        padding: 15px;
    }

    .admin-rezervasyon h3 {
        font-size: 18px;
    }

    .admin-rezervasyon p {
        font-size: 13px;
    }

    .admin-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .admin-buttons button {
        width: 100%;
        font-size: 10px;
        padding: 8px 4px;
    }


    /* ADMIN LOGIN */

    .admin-login {
        margin: 40px 12px;
        padding: 25px 18px;
    }
}


/* ÇOK KÜÇÜK TELEFON */

@media (max-width: 430px) {

    .hero h1 {
        font-size: 26px;
    }

    .gallery-title h2,
    .section-title h2 {
        font-size: 24px;
    }

    .packages .package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages .package:nth-child(5) {
        width: 70%;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {

    .category-card {
        height: auto !important;
        overflow: visible !important;
    }

    .category-card > img {
        height: 220px !important;
    }

    .inside-photos.active {
        display: grid !important;
        position: relative !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .inside-photos img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }
}
/* =========================
   MOBİL GALERİ
========================= */

@media (max-width: 768px) {

    .gallery-categories {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .category-card {
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }

    .category-card > img {
        width: 100% !important;
        height: 230px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .category-content {
        position: relative !important;
        inset: auto !important;

        padding: 15px !important;

        background: white !important;

        color: #222 !important;

        text-align: center !important;
    }

    .category-content h2 {
        color: #222 !important;
        margin-bottom: 10px !important;
    }

    .inside-photos {
        display: none !important;

        position: static !important;

        width: 100% !important;
        height: auto !important;

        padding: 10px !important;

        background: white !important;
    }

    .inside-photos.active {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .inside-photos.active img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-height: none !important;

        object-fit: contain !important;

        position: static !important;

        opacity: 1 !important;
        visibility: visible !important;
    }
}


