:root {
            --bg-color: #fcf6f0;
            --accent-color: #f4c8bA;
            --text-color: #5c5c5c;
            color-scheme: only light;
        }

        .menu-link{
    animation: pulse 4s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
    
}
        .dotted-logo{
    animation: move-right 2s ease-in-out infinite alternate;
        }
        @keyframes move-right {
            0% { transform: translateX(0); }
            100% { transform: translateX(30px); }
            
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            position: relative;
            overflow-x: hidden; /* Prevents horizontal scroll from pseudo-elements */
        }

        /* Wavy background shapes */
        body::before,
        body::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 300px; /* Adjust height of the wave */
            background-color: var(--accent-color);
            z-index: -1;
            border-radius: 0 0 50% 50% / 0 0 100% 100%;
            transform: scaleX(1.5);
        }
        
        body::before {
            top: 0px; /* Position of the top wave */
            height: 350px;
        }

        body::after {
            bottom: -50px; /* Position of the bottom wave */
            height: 350px;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }

        /* Header */
        .navbar {
            padding: 2rem 0;
        }
        .navbar-brand img {
            max-height: 120px;
        }
        .nav-link {
            color: var(--text-color);
            font-weight: 500;
            margin-left: 1.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: #000;
        }
        
        /* Main Section */
        .main-section {
            margin-top: 2rem;
            padding-bottom: 5rem;
        }
        
        .promo-banner {
            background-image: url('img/PNG/pngler-01.png'); /* Replace with your background image */
            background-size: cover;
            background-position: center;
            padding: 2rem;
            border-radius: 15px;
            color: #cce63a;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 450px;
        }
        .promo-banner h2 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        .promo-banner .date {
            background-color: rgba(0, 0, 0, 0.4);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 500;
        }

        .saat {
            font-size: 1.2rem;
            margin-top: 0.5rem;
            font-weight: 800;
        }

        .program-not{
            font-size: 1.2rem;
            margin-top: 0.5rem;
            font-weight: 500;
            color: rgb(235, 113, 43);
        }

        ul.program-list {
            list-style-type: disclosure-closed;
            padding-left: 1.5rem;
        }

        .program-tarih{
            margin-bottom: 1rem;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 500;
            font-size: 2rem;
            color: #cce63a;
        }

        /* Carousel */
        .carousel-item .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            color: white;
            height: 450px;
        }
        .card img {
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
        }
        .card-img-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            text-decoration: none;
            color: white;
        }
        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .card-text {
            font-size: 1.1rem;
        }
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
        }
        .carousel-control-prev-icon, .carousel-control-next-icon {
             background-color: rgba(0, 0, 0, 0.5);
             border-radius: 50%;
             padding: 1rem;
        }
        
        /* Clickable Card Styles */
        .card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .card-link:hover .card {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        /* Welcome Section */
        .welcome-section {
            padding: 4rem 0;
            position: relative;
        }
        
        .tree-image {
            position: absolute;
            bottom: -80px;
            right: 0;
            max-width: 400px;
            z-index: 1;
        }

        /* Footer */
        footer {
            padding: 8rem 0 3rem 0;
            position: relative;
            z-index: 2;
        }
        .footer-logo img {
            max-width: 150px;
        }
        .footer-contact {
            text-align: right;
        }
        .social-icons a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 1rem;
            font-size: 1.2rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .tree-image {
                display: none; /* Hide tree on smaller screens for cleaner layout */
            }
            .promo-banner, .carousel-item .card {
                min-height: 350px;
                height: 350px;
            }
        }
        @media (max-width: 768px) {
            body::before, body::after {
                transform: scaleX(2);
            }
            .navbar-brand {
                margin-bottom: 1rem;
            }
            .navbar-nav {
                width: 100%;
                text-align: center;
            }
            .nav-link {
                margin: 0.5rem 0;
            }
            .promo-banner {
                margin-bottom: 2rem;
            }
            .footer-logo, .footer-contact {
                text-align: center;
                margin-bottom: 1rem;
            }
            .footer-contact {
                 text-align: center;
            }
        }