body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #fff0f5;
    color: #333;
    text-align: center;
}

header {
    background: #ff5a77;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
}

.intro {
    padding: 40px;
}
.page-header {
    background: #ffe6ec;
    padding: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #ff4d6d;
    margin-bottom: 10px;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.reason {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.reason:hover {
    transform: scale(1.05);
}

.reason img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 15px;
    font-style: italic;
    color: #444;
}
.promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

.promise {
    background: #fff5f7;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.promise:hover {
    transform: translateY(-5px);
}

.promise h2 {
    color: #ff4d6d;
    margin-bottom: 10px;
}

.future-banner {
    margin: 50px 0;
    text-align: center;
}

.future-banner img {
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.future-banner p {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #333;
    font-style: italic;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 10px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ff4d6d;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.container {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.container.left {
    left: 0;
    text-align: right;
}

.container.right {
    left: 50%;
    text-align: left;
}

.container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #ff4d6d;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.container.left::after {
    right: -10px;
}

.container.right::after {
    left: -10px;
}

.content {
    padding: 20px 25px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 90%;
}

.future {
    background: #fff0f5;
    border: 2px dashed #ff4d6d;
}

/* Responsive (mobil) */
@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
        margin-bottom: 30px;
    }

    .container.left, .container.right {
        left: 0;
    }

    .container.left::after, .container.right::after {
        left: 30px;
    }

    .timeline::after {
        left: 30px;
    }
}
body {
    font-family: 'Roboto', sans-serif;
}

h1, h2 {
    font-family: 'Dancing Script', cursive;
}
.reason:hover, .promise:hover, .gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.next-page {
    text-align: center;
    margin: 50px 0;
}

.next-page .btn {
    background-color: #ff4d6d;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.next-page .btn:hover {
    background-color: #ff758c;
    transform: scale(1.05);
}
/* Navbar Temel Stil */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ff4d6d;
    color: white;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger ikon gizle (masaüstü) */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ff4d6d;
        flex-direction: column;
        align-items: center;
        display: none; /* başlangıçta gizli */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }
}
