/* Custom CSS for Gönlümüzbir website */

/* Font import for Avenir */

@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenirblack.otf') format('opentype'); /* .otf için 'opentype' kullan */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AvenirMedium';
    src: url('fonts/AvenirMedium.otf') format('opentype'); /* .otf için 'opentype' kullan */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AvenirHeavy';
    src: url('fonts/AvenirHeavy.otf') format('opentype'); /* .otf için 'opentype' kullan */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AvenirBook';
    src: url('fonts/AvenirBook.otf') format('opentype'); /* .otf için 'opentype' kullan */
    font-weight: normal;
    font-style: normal;
}

 
/* Global styles */
:root {
    --primary-green: #006F3C;
    --dark-green: #004928;
    --light-gray: #f8f9fa;
    --secondary-gray: #495057;
    --font-primary: 'Avenir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

p, a, span, li, button, input, textarea {
    font-family: "AvenirBook";
}

/* Top bar */
.top-bar {
    background-color: var(--primary-green) !important;
    font-family: 'AvenirMedium';
}

.hashtag {
   font-size: 12px;

}
.social-media{
    font-size: 11px;
    font-family: 'AvenirMedium';
    background-color: var(--dark-green);
    padding: 15px 20px;
}
.social-media a{
    font-size: 11px;
    font-family: 'AvenirMedium';
   
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.navbar-brand{
    
}
.navbar-brand img{
    width: auto;
    height: 46px;
}

.slogan {
    color: var(--primary-green) !important;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: 'AvenirMedium';
}

.logo-circle img {
    border-radius: 50%;
}
.logo-circle   {
    margin-left: 20px;
}

/* Hero section */
.hero {
    position: relative;
}

.hero img {
    filter: brightness(0.8);
}

.hero-content {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-weight: 700;
    line-height: 1.2;
}
.info-boxes{
    width: 80%;
    margin: auto;
    margin-top: -100px;
    z-index: 9999;
    position: relative;
    max-width: 1100px;
}
/* Info boxes */
.info-box {
    height: 100%;
}

.info-box.bg-success {
    background-color: var(--primary-green) !important;
}

.info-box.bg-secondary {
    background-color: #4a4a4a !important;
}

.info-box h3 {
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'AvenirMedium';
}
.info-box a{
    color: white;
    border-bottom: 1px solid white;
    text-align: left;
    font-family:"AvenirBook";
    text-decoration: unset;
    padding-bottom: 3px;
    font-size: 16px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About section */
.about h2 {
    color: var(--primary-green);
    font-weight: 700;
}

.project-item {
    margin-bottom: 5px;
}

.project-item .icon {
    color: var(--primary-green);
}

.project-item h5 {
    margin-bottom: 0;
    font-weight: 500;
    font-family: 'AvenirBook';
    font-size: 17px;
}

/* Thank you section */
.thank-you h2 {
    color: var(--secondary-gray);
    font-weight: 600;
}
.gray-bg{
    background-color: #31393e0f;
    padding: 30px 36px;
}

.gray-bg .row{
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
}
.flower-img {
    position: absolute;
    right: 0;
    bottom: 0%;
    width: 100%;
    height: 186px;
    object-fit: contain;
    object-position: center;
}

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

footer a:hover {
    opacity: 0.8;
}

/* Media queries */
@media (max-width: 992px) {
    .hero-content {
        margin-left: 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .info-boxes{
        width: 100%;
        margin-top: 0px;
        border-top: 2px solid #ffffff;
    }
    .navbar .justify-content-between{
        justify-content: center !important;
    }
    .about{
        padding: 2rem;;
    }
    .hero-content {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        margin-left: 0 !important;
        padding: 2rem;
        background-color: var(--primary-green);
    }
    .flower-img{
position: unset;
    }
    .nav {
        flex-direction: column;
        align-items: center;
    }
    .thank-you .col-md-6{
        text-align: center;
    }
    .slogan {
        margin: 1rem 0;
        text-align: center;
    }
    footer{
        text-align: center;
    }
    .logo-circle {
        display: none;
    }
} 