/* Custom CSS for Cumalıkızık Orman Parkı */

/* Root Variables */
:root {
    --primary-color: #28a745;
    --secondary-color: #218838;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    background-color: rgba(33, 37, 41, 0.8) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navbar Mobile Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(33, 37, 41, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 10px;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('resimler/image00001.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Activity Cards */
.activity-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Address Card */
.address-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.address-card h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.address-card .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Social Media */
.social-media {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.social-media h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #E91E63, #F44336);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(233, 30, 99, 0.4);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Restaurant Features */
.restaurant-features .feature-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.restaurant-features .feature-item span {
    font-weight: 600;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px and down) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .activity-card {
        margin-bottom: 2rem;
    }
    
    .about-images,
    #restaurant img {
        height: 350px;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
    
    .navbar-brand span {
        display: none;
    }
    
    .about-images {
        height: 300px;
        margin-top: 2rem;
    }
    
    #restaurant img {
        height: 300px;
        margin-top: 2rem;
    }
    
    .activity-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .activity-icon {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .contact-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    #about,
    #restaurant {
        text-align: center;
    }
    
    .restaurant-features .feature-item {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Small Tablets and Large Phones (576px and down) */
@media (max-width: 576px) {
    .hero {
        padding: 1rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .activity-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .activity-card h4 {
        font-size: 1.2rem;
    }
    
    .activity-icon {
        font-size: 2rem;
    }
    
    .about-images,
    #restaurant img {
        height: 250px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .contact-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .address-card,
    .social-media {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* Footer responsive */
    footer .row {
        text-align: center;
    }
    
    footer .col-lg-6 {
        margin-bottom: 1rem;
    }
    
    footer p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Small Mobile Devices (480px and down) */
@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .activity-card,
    .contact-card,
    .address-card,
    .social-media {
        padding: 0.8rem;
    }
    
    .about-images,
    #restaurant img {
        height: 200px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.5rem;
        font-size: 1rem;
    }
}

/* Extra Small Devices (320px and down) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .activity-card h4,
    .contact-card h4 {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        padding: 8px 20px;
    }
}

/* Animation Enhancements */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Menu Section Enhancement */
#menu {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* About Section Image Animation */
.about-images {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 400px;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.05);
}

/* Restaurant Section Images */
#restaurant img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

#restaurant img:hover {
    transform: scale(1.05);
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} 