* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* World */
#world {
    background-color: #f3f8fb;

}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #ffffff;
    padding: 20px 10px;
    color: #25455c;
    gap: 20px;
    background-color: #f3f8fb;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
}

.navbar .logo span {
    color: #b31f1f;
}

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

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #25455c;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #4f7ba8;
}


.navbar .menu-icon {
    display: none;
}

@media (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        background-color: #f3f8fb;
        border-bottom: 1px solid #ffffff;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar .logo {
        font-size: 24px;
        font-weight: bold;
    }

    .navbar .logo span {
        color: #b31f1f;
    }

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

    .navbar .nav-links li {
        display: inline;
    }

    .navbar .nav-links a {
        text-decoration: none;
        color: #25455c;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .navbar .nav-links a:hover {
        color: #4f7ba8;
    }


    .navbar .menu-icon {
        display: none;
        cursor: pointer;
        font-size: 30px;
        color: #2c3e50;
    }


    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f3f8fb;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 999;
    }

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

    .navbar .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .navbar .nav-links a {
        display: block;
        width: 100%;
        padding: 10px;
        color: #2c3e50;
        font-size: 18px;
    }

    /* Menü simgesi */
    @media (max-width: 768px) {
        .navbar .menu-icon {
            display: block;
        }
    }
}



/* Hero Alanı */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70vh;
    padding: 50px;
    background: #fff;
    position: relative;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 38px;
    font-weight: bold;
    color: #333;
}

.hero-left p {
    margin-top: 15px;
    font-size: 16px;
    color: #777;
}

.camp-icon {
    width: 50px;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    margin-top: 25px;
}

.stars img {
    width: 25px;
    margin-right: 5px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-green {
    background-color: #28a745;
    color: white;
    transition: background-color 0.3s ease;
    font-size: 18px;
    padding: 20px 50px;
}

.btn-green:hover {
    background-color: #218838;
}


.hero-right {
    flex: 1;
    background: url('/images/hero.png') no-repeat center center/cover;
    border-radius: 12px;
    position: relative;
    height: 100%;
    padding: 20px;
    color: white;
}


.location-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 30px;
    left: 30px;
    width: 300px;
    color: #333;
    margin: 0 auto;
}

.location-header {
    margin-bottom: 15px;
}

.location-title {
    font-size: 18px;
    font-weight: bold;
    color: #34495e;
}

.location-body h2 {
    font-size: 30px;
    color: #2c3e50;
    font-weight: bold;
    margin: 15px 0;
}

.location-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    letter-spacing: 1px;
}

.stat h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2980b9;
    margin-top: 5px;
}

.explore-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #218838;
}

/* Responsive  */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 20px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-right {
        height: 60vh;
        margin-top: 20px;
        border-radius: 12px;
        position: relative;
    }

    .location-card {
        position: static;
        margin-top: 20px;
        width: 80%;
        margin-bottom: 20px;
    }

    .location-body h2 {
        font-size: 24px;
    }

    .rating {
        justify-content: center;
    }

    .buttons {
        justify-content: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .location-stats {
        flex-direction: column;
        align-items: center;
    }
}



/* Explore Section */
.explore-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
}

.explore-section h2 {
    color: white;
}

.explore-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.explore-item {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9; 
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.explore-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-img-main {
    background-image: url('/images/bavul.png');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
}

.green-box {
    background-color: #28a745;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 600px;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.green-box-title {
    font-size: 24px;
    font-weight: bold;
}

.green-box-text {
    font-size: 16px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .explore-item {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .explore-container {
        flex-direction: column;
        align-items: center;
    }

    .explore-item {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .green-box {
        position: relative;
        bottom: 0;
        right: 0;
        width: 90%;
        margin: 20px auto;
    }
}



/* Features */
.features-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 0px 50px 0px 0px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feature-image {
    flex: 1;
    text-align: left;
}

.phone-image {
    width: 100%;
    max-width: 550px;
}

.feature-content {
    flex: 1;
    text-align: center;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-wrapper h2 {
    font-size: 45px;
    color: #25455c;
}

.camp-icon {
    width: 50px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 20px;
    list-style-type: none;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.feature-icon {
    background: #28a745;
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    color: white;
}

.feature-icon img {
    width: 40px;
}

.feature-icon i {
    font-size: 20px;
}

.feature-item h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.feature-item p {
    margin-top: 8px;
    font-size: 15px;
    color: #434242;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-image {
        order: 2;
        margin-top: 20px;
    }

    .feature-content {
        order: 1;
    }

    .title-wrapper {
        justify-content: center;
    }
}







/* Download */

.get-app {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/images/pattern.png');
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 0px;
}

.get-app-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
}

.get-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    padding-left: 50px;
}

.get-app-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.7;
}

.get-app-subtitle {
    font-size: 24px;
    color: #a6a6a6;
}

.get-app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-download {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.apple-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 2px solid #333;
}

.apple-btn:hover {
    background-color: #e5e5e5;
}

.android-btn {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
}

.android-btn:hover {
    background-color: #45a049;
}

.btn-icon {
    width: 30px;
    height: 30px;
}

.get-app-image {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 50%;
}

.phone-img {
    width: 100%;
    height: auto;
    max-width: 700px;
}

/*  Responsiveness */
@media (max-width: 768px) {
    .get-app-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .get-app-content {
        max-width: 100%;
        padding-left: 0;
    }

    .get-app-buttons {
        flex-direction: column;
    }

    .phone-img {
        max-width: 400px;
        margin-top: 20px;
    }

    .get-app-image {
        justify-content: flex-end;
        align-items: center;
        max-width: 80%;
    }
}





/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.8);
    color: #25455c;
    padding: 30px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 16px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #25455c;
    text-align: left;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0px;
    text-align: left;
    font-size: 14px;
}

.footer ul li {
    margin: 8px 0 24px 0px;
}

.footer a {
    color: #25455c;
    text-decoration: none;
    font-weight: lighter;
}

.footer-contact li:hover i,
.footer-contact li:hover a,
.footer-support-list li:hover i,
.footer-support-list li:hover a {
    color: #a31b1b;
}

.footer-social-media .social-icons {
    margin-top: 10px;
}


.footer-contact li i,
.footer-support-list li i {
    font-size: 16px;
}

.social-icons a {
    font-size: 16px;
    margin: 0 10px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #b31f1f;
}

.footer-copyright {
    background-color: white;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;

}

#footer-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-container,
.footer-copyright {
    position: relative;
    z-index: 2;
}


.footer-support,
.footer-contact,
.footer-social-media {
    flex: 1 1 10%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding-top: 20px;
}

.footer-support h3,
.footer-contact h3,
.footer-social-media h3 {
    text-align: left;
}

.footer-support ul,
.footer-contact ul {
    margin-top: 0;
    padding-left: 0;
}

.footer-support-list li,
.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-support-list li i,
.footer-contact li i {
    margin-right: 10px;
}


/* Responsive  */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer ul {
        text-align: center;
    }

    .footer h3 {
        text-align: center;
        text-align: start;
    }

    .footer-logo img {
        width: 80px;
    }

    .social-icons a {
        font-size: 18px;
        margin: 5px;
    }

    .footer-support,
    .footer-contact,
    .footer-social-media {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0;
    }

    .footer-container {
        padding: 15px;
    }

    .footer h3 {
        font-size: 16px;
        text-align: start;
    }

    .footer-copyright {
        font-size: 12px;
    }
}