html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #f3f1e3; 
    line-height: 1.7;
    background: #f3f1e3;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

h1 {
    font-size: 56px;
    line-height: 1.15;
}

h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #111;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-box {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.35);
    padding: 30px 20px;
    border-radius: 20px;
    width: 85%;
    max-width: 700px;
    
    animation: fadeUp 1s ease forwards;
}

.hero-box h1 {
   font-family: 'Great Vibes', cursive;
    font-size: 82px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-box p {
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ANA SAYFA NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 9999;
    background: transparent;
    transition: all 0.35s ease;
}

.navbar.show {
    top: 0;
}

.navbar.scrolled {
   background: #111;
    backdrop-filter: blur(12px);
    padding: 14px 50px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 15px;
    color: white !important;
    white-space: nowrap;
    font-weight: 400;
    margin-left: 28px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #d4b06a, transparent);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f6e7c8;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

/*ABOUT*/

.about-page {
    background: #f3f1e3;
    padding: 140px 20px 80px;
    color: #111;
}

.about-hero {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-script {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #c8aa6e;
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 18px;
    color: #111;
}

.about-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.about-block {
    max-width: 1200px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-block.reverse .about-image {
    order: 2;
}

.about-block.reverse .about-text {
    order: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.about-text {
    background: #f3f1e3;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 34px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.95;
    color: #333;
    margin-bottom: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-closing {
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
}

.about-closing p {
    font-size: 19px;
    line-height: 1.9;
    color: #111;
}

/* İÇ SAYFALAR NAVBAR */

.navbar.inner-page {
    background: #111 !important;
    backdrop-filter: blur(10px);
}

.navbar.inner-page.scrolled {
    background: rgba(0, 0, 0, 0.92);
}

@media (max-width: 768px) {
    .about-page {
        padding: 110px 16px 60px;
    }

    .about-script {
        font-size: 34px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-block,
    .about-block.reverse {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .about-block.reverse .about-image,
    .about-block.reverse .about-text {
        order: unset;
    }

    .about-text {
        padding: 22px;
        border-radius: 18px;
    }

    .about-text p,
    .about-closing p {
        font-size: 15px;
    }
}

/* SERVICES */
.services {
    padding: 80px 20px;
    background: #f3f1e3;
    text-align: center;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    color: #e8d3a7;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #f3f1e3;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    position: relative;
    transition: 0.35s;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);

    
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #d4b06a, transparent);
}

.service-card:hover {
    transform: translateY(-8px);
    color: #f6e7c8;
    
}

.service-card img {
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Great Vibes', serif;
    font-size: 34px;
    font-weight: 600;
    color: #cdb257;
}

.service-card p {
    margin: 0 20px 25px;
    text-decoration: none;
    color: rgb(8, 0, 0);

}

.service-card:visited {
    color: white;
}

/* GALLERY PAGE */
.gallery-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 20px 60px;
    background: #f3f1e3;
    color: rgb(6, 0, 0);
    text-align: center;
    box-sizing: border-box;
}

.gallery-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 14px;
}

.gallery-page p {
    margin-bottom: 35px;
    opacity: 0.85;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* LİGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    object-fit: contain;
}

.lightbox .close {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}
/* CONTACT */
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #f3f1e3;
    color: #111;
}

.map {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
}

/* FOOTER */
.footer {
    padding: 20px;
    text-align: center;
    background: #f3f1e3;
    color: #111;
    
    border-top: 1px solid rgba(0,0,0,0.08);

}

.site-footer {
     background: #111;
    color: white;
    text-align: center;
    padding: 70px 20px 55px;
    margin-top: 80px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}
.footer-logo img {
    width: 180px;
    max-width: 70%;
    height: auto;
    display: block;
}

.footer-contact p {
    margin: 12px 0;
    font-size: 17px;
    color: #ddd;
    font-weight: 300;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 55px 20px 45px;
    }

    .footer-logo img {
        width: 180px;
        max-width: 75%;
    }

    .footer-contact p {
        font-size: 15px;
    }
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
  position: fixed;
    inset: 0;
    background: #f4f2ef;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #111;
}

.mobile-close {
    font-size: 42px;
    color: #111;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding-top: 34px;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 400;
}
.mobile-dropdown {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.active .mobile-menu-links a,
.mobile-menu.active .mobile-dropdown {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-dropdown { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-links a,
.dropdown-items a {
    text-decoration: none;
    color: #111;
}

.mobile-menu-links a:hover,
.dropdown-items a:hover {
    color: #8c6b3f;
}



/* MOBILE */
@media (max-width: 768px) {

    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }

    .navbar {
        padding: 18px 20px;
    }

    .hero-box h1 {
        font-size: 64px;
        white-space: nowrap;
        text-align: center;
    }

      .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .service-card img {
        height: 200px;
    }

    .gallery-page {
        padding: 95px 16px 50px;
    }

    .gallery-page h1 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid img {
        height: 240px;
    }

      .lightbox .prev,
    .lightbox .next {
        font-size: 32px;
        padding: 8px 12px;
    }

    .lightbox .prev {
        left: 10px;
    }

    .lightbox .next {
        right: 10px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    

    .nav-links {
        display: none;
    }

    .detail-block {
        max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: center;
    }

    .detail-block img {
        width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    background: transparent;
    }

}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #111;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-items {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-left: 18px;
}

.dropdown-items.active {
    display: flex;
}

.dropdown-items a {
    font-size: 18px;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.dropdown-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotate {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .menu-toggle {
        display: none;
    }
}

.detail-page {
    padding: 150px 20px 80px;
    background: #f3f1e3;
    color: #111;
}

.detail-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.detail-header h1 {
    margin-bottom: 18px;
    color: #cdb257;
}

.detail-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    opacity: 0.92;
}

.detail-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: center;
}

.detail-block.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.detail-block.reverse img {
    order: 2;
}

.detail-block.reverse .detail-text {
    order: 1;
}

.detail-block img {
   width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

.detail-text {
    background: #f3f1e3;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    padding: 32px;
    backdrop-filter: blur(8px);
}
.detail-text p {
    font-size: 16px;
    line-height: 1.95;
    color: #333;
}

.detail-closing {
    max-width: 850px;
    margin: 30px auto 0;
    text-align: center;
}

.detail-closing p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.detail-cta {
    display: inline-block;
    text-decoration: none;
    color: #111;
    background: #f6e7c8;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    transition: 0.3s ease;
}

.detail-cta:hover {
    transform: translateY(-2px);
    background: #e8d3a7;
}


.detail-header p,
.detail-closing p {
    color: #111;
}

@media (max-width: 768px) {
    @media (max-width: 768px) {
    .detail-block,
    .detail-block.reverse {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .detail-block.reverse img,
    .detail-block.reverse .detail-text {
        order: unset;
    }

    .detail-block img {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .detail-text {
        padding: 22px;
        border-radius: 18px;
    }
}

    .detail-header p,
    .detail-text p,
    .detail-closing p {
        font-size: 15px;
    }

    .detail-cta {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}