/*
Theme Name: Discovery
Theme URI: https://yourdomain.com/discovery-theme
Author: Your Name
Author URI: https://yourdomain.com
Description: Discovery teması eğitim kurumları ve online eğitim platformları için özel olarak tasarlanmış modern ve tamamen özelleştirilebilir bir WordPress temasıdır. Redux panel sayesinde tüm tema ayarlarını kolayca yönetebilirsiniz.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: discovery
Tags: education, learning, courses, green, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* CSS Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #27ae60; /* Eğitim yeşili */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #219653;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #219653;
    color: #fff;
}

.section-padding {
    padding: 80px 0;
}

/* Header Stili */
.site-header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation ul li {
    margin-left: 25px;
    position: relative;
}

.main-navigation ul li a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
}

.main-navigation ul li a:hover {
    color: #27ae60;
}

/* Footer Stili */
.site-footer {
    background-color: #27ae60;
    color: #fff;
    padding: 80px 0 50px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-widget-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-contact-info i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    margin-left: 15px;
    color: #fff;
    font-size: 18px;
}

/* Banner Bölümü */
.banner-section {
    padding: 150px 0 100px;
    background-color: #f2f7f2;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 600px;
}

.banner-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-search {
    margin-top: 40px;
    position: relative;
}

.banner-search input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    padding: 0 30px;
    border-radius: 25px;
}

.banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: 1;
}

/* Responsive Stiller */
@media (max-width: 991px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-title {
        font-size: 40px;
    }
    
    .banner-image {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .main-navigation {
        display: none;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .banner-section {
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .banner-content {
        margin: 0 auto 50px;
    }
    
    .banner-image {
        position: relative;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 20px;
    }
    
    .social-icons a {
        margin: 0 7px;
    }
}
