:root {
    --primary-green: #5e8a32;
    --primary-yellow: #f9eca0;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f8f8f8;
    --white: #ffffff;
}

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

body {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

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

.hero-section {
    min-height: 42vw;
    display: flex;
    align-items: center;
    padding-top: 0px;
    background-color: #fbf5f5;
    position: relative;
    padding-bottom: 0;
}

.hero-section .hero-row {
    align-items: center;
}

/* Tam 1400px ve üstü için end */
@media (min-width: 1360px) {
    .hero-section .hero-row {
        align-items: flex-end;
    }
    .hero-content{
        margin-top: 70px;
    }
}

/* 1401px ve üstü tekrar center */
@media (min-width: 1401px) {
    .hero-section .hero-row {
        align-items: center;
    }
}



.hero-content {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title-small {
    font-size: 3rem;
    letter-spacing: -1px;
}

.hero-logo {
    height: 150px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-yellow {
    color: #b58d10; 
    font-style: italic;
}

.hero-title-orange {
    color: #a67c52; 
    font-style: italic;
}



.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-hero-primary {
    background-color: var(--primary-yellow);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    background-color: #f5e68a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 236, 160, 0.3);
    color: #1a1a1a;
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--dark);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-tags {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-tag {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
}

.hero-video-container {
    height: 50vw;
    padding: 0;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .hero-video-container {
        height: 60vw;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-section {
    background-color: var(--white);
    padding: 7rem 0;
}

.about-images {
    position: relative;
    padding-bottom: 50px;
    padding-left: 30px;
    min-height: 520px;
    display: flex;
    justify-content: flex-end;
}

.about-image-top {
    width: 85%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    z-index: 1;
}

.about-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-bottom {
    width: 65%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid var(--white);
}

.about-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 3;
    min-width: 130px;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.3;
}

.about-content {
    padding-left: 2rem;
}

.about-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.highlight-green {
    color: var(--primary-green);
    font-style: italic;
    background-color: rgba(94, 138, 50, 0.05);
    padding: 0 8px;
    display: inline-block;
    border-radius: 4px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.events-section {
    background-color: var(--primary-yellow);
}

.event-card.modern {
    border-radius: 25px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-card.modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.event-card__media {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.event-card:hover .event-card__media img {
    transform: scale(1.05);
}

.event-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
    mix-blend-mode: multiply;
}

.event-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255,255,255,0.85);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--primary-green);
    font-weight: 600;
}

.event-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card__label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: rgba(94,138,50,0.8);
    margin-bottom: 0.75rem;
}

.event-card__body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.event-card__body p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-card__footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.6);
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.event-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.75);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.gallery-section {
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(94, 138, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .material-icons {
    color: var(--white);
    font-size: 3rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--primary-green);
}

.cta-box {
    padding: 3rem 2.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(94, 138, 50, 0.95) 0%, rgba(94, 138, 50, 0.85) 100%);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-cta-white:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    background-color: var(--light-gray);
    padding: 8rem 0;
}

.contact-wrapper {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-info-card {
    background-color: var(--primary-green);
    padding: 4rem 3rem;
    height: 100%;
    color: var(--white);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon .material-icons {
    color: var(--white);
    font-size: 1.4rem;
}

.method-details span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.method-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.social-links-contact p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.map-wrapper {
    height: 100%;
    min-height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1399.98px) {
    .hero-section {
        padding-top: 0;
        min-height: auto;
    }

    .hero-content {
        padding: 2rem 2rem;
        margin-top: 70px;
    }

    .hero-logo {
        height: 140px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-small {
        font-size: 2.5rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .btn-hero-primary, 
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-tags {
        gap: 1rem;
    }
}

@media (max-width: 991.98px) {
    .contact-wrapper {
        border-radius: 20px;
    }

    .contact-info-card {
        padding: 3rem 2rem;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 0;
    }
    .hero-logo {
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-small {
        font-size: 2.2rem;
    }

    .hero-video-container {
        height: 60vh;
        min-height: 400px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem 0;
        margin-top: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .about-images {
        padding: 0;
        margin-bottom: 5rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .about-image-top {
        width: 100%;
        margin-bottom: -25%;
        border-radius: 15px;
        position: relative;
        z-index: 1;
    }

    .about-image-bottom {
        width: 75%;
        position: relative;
        margin-left: -15%;
        margin-top: 0;
        border-width: 6px;
        border-radius: 15px;
        z-index: 2;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

    .about-badge {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        min-width: 120px;
        padding: 0.85rem 1.25rem;
        z-index: 3;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .cta-box {
        text-align: center;
        padding: 4rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .cta-text {
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }

    .btn-cta-white {
        width: auto;
        min-width: 200px;
        padding: 1rem 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        justify-content: center;
        align-items: center;
    }

    .hero-btn-wrapper {
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info-card {
        padding: 2.5rem 1.5rem;
    }

    .method-details p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title-small {
        font-size: 1.8rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-tags {
        gap: 0.75rem;
    }

    .hero-tag {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-video-container {
        height: 50vh;
        min-height: 350px;
    }

    .gallery-item {
        height: 250px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        height: 60px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-small {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 2.5rem 1rem;
    }

    .hero-logo {
        height: 70px;
    }

    .hero-video-container {
        height: 40vh;
        min-height: 300px;
        padding: 0;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .feature-item,
    .contact-item {
        margin-bottom: 2rem;
    }
}
