:root {
    --ghost-white: #F3F4FF;
    --verdigris: #28AFB0;
    --lapis-lazuli: #1C5D99;
    --russet: #8B4513;
    --bistre: #33261D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--ghost-white);
    color: var(--bistre);
    line-height: 1.6;
}
h1,
section h1,
article h1,
aside h1,
nav h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--lapis-lazuli);
}

h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--verdigris);
    bottom: -10px;
    left: 0;
}

p {
    margin: 15px 0;
    font-size: 1.1rem;
}

a {
    color: var(--verdigris);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--lapis-lazuli);
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.btn {
    display: inline-block;
    background-color: var(--verdigris);
    color: var(--ghost-white);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, border 0.3s;
    border: 2px solid var(--verdigris);
    margin: 10px 5px;
    box-shadow: 0 2px 8px rgba(40, 175, 176, 0.08);
    width: 250px; /* Set a strict width for all buttons */
    text-align: center;
}

.btn:hover,
.btn:focus,
.pdf-btn:hover,
.pdf-btn:focus,
.online-btn:hover,
.online-btn:focus {
    background-color: var(--ghost-white);
    color: var(--lapis-lazuli);
    border-color: var(--lapis-lazuli);
}

.btn-outline {
    background-color: transparent;
    color: var(--verdigris);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--ghost-white);
    color: var(--lapis-lazuli);
    border-color: var(--lapis-lazuli);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.95rem;
    border-radius: 5px;
}

.pdf-btn {
    background-color: var(--lapis-lazuli);
    color: var(--ghost-white);
    border: 2px solid var(--lapis-lazuli);
    font-weight: 700;
}

.online-btn {
    background-color: var(--verdigris);
    color: var(--ghost-white);
    border: 2px solid var(--verdigris);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.accent-text {
    color: var(--verdigris);
    font-weight: 600;
}

.section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.section-bg {
    background-color: rgba(40, 175, 176, 0.1);
}

.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
}

/* Navigasyon */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--ghost-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.header-scrolled {
    padding: 5px 0;
    background-color: var(--ghost-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lapis-lazuli);
    letter-spacing: 1px;
}

.logo-text .sub {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--russet);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    position: relative;
}

.nav-menu a:hover, .nav-menu .active {
    color: var(--verdigris);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--verdigris);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu .active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left:auto;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--ghost-white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Logo ve metin arasındaki boşluk */
}

.mobile-logo img {
    height: 50px; /* Logo boyutu */
    width: auto;
}

.mobile-logo span {
    font-weight: 700;
    color: var(--lapis-lazuli);
    font-size: 1.5rem; /* Metin boyutu */
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bistre);
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--verdigris);
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 10px 0; 
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--bistre);
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .active {
    background-color: rgba(40, 175, 176, 0.1);
    color: var(--verdigris);
    border-left-color: var(--verdigris);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(40, 175, 176, 0.1);
    color: var(--verdigris);
    transition: all 0.3s;
}

.mobile-social-links a:hover {
    background-color: var(--verdigris);
    color: var(--ghost-white);
}


/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(33, 89, 209, 0.5), rgba(24, 50, 202, 0.7)),
        url('../../Images/Hero/mainpage-hero.webp') no-repeat center center;
    background-blend-mode: normal, luminosity;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--ghost-white);
    text-align: left;
    /* Add overlay for 50% transparency on the image */
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* 50% transparent black overlay */
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
}

/* Hakkımızda */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
    max-width: 500px;
    max-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.mission-vision {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--verdigris);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
}

.mission h3, .vision h3 {
    color: var(--verdigris);
    margin-bottom: 15px;
}

.mission ul, .vision ul {
    list-style-position: inside;
}

.mission li, .vision li {
    margin: 10px 0;
    position: relative;
    padding-left: 10px;
}

.mission li::before, .vision li::before {
    content: '•';
    color: var(--verdigris);
    margin-right: 8px;
}

/* Bazı Faaliyetlerimiz Section */
#activities-featured {
    background-color: var(--ghost-white);
}

.activity-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.activity-item.reverse {
    flex-direction: row-reverse;
}

.activity-item.reverse .activity-content {
    text-align: right;
}

.activity-item.reverse .activity-content h3,
.activity-item.reverse .activity-content p,
.activity-item.reverse .activity-content .btn {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.activity-item.reverse .activity-content h3::after {
    left: auto;
    right: 0;
}

.activity-img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    position: relative;
}

.activity-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.activity-item:hover .activity-img img {
    transform: scale(1.03);
}

.activity-content {
    flex: 1;
    min-width: 300px;
}

.activity-content h3 {
    font-size: 1.8rem;
    color: var(--lapis-lazuli);
    margin-bottom: 15px;
}

.activity-content p {
    margin-bottom: 20px;
    color: var(--bistre);
    line-height: 1.7;
}

.activity-meta {
    display: flex;
    gap: 20px;
    color: var(--russet);
    font-size: 0.9rem;
}

.activity-meta i {
    margin-right: 5px;
    color: var(--verdigris);
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 3rem;
    color: var(--verdigris);
    margin-bottom: 20px;
}

.activity-card h3 {
    margin-bottom: 15px;
    color: var(--lapis-lazuli);
}

.activity-card p {
    margin-bottom: 20px;
    color: var(--bistre);
}

#magazine-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(15, 69, 119, 0.5), rgb(13, 76, 134)), url('../../Images/Hero/magazine-hero.webp') no-repeat center center/cover;
    color: var(--ghost-white);
    text-align: center;
}

#magazine-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* 50% transparent black overlay */
    z-index: 1;
    pointer-events: none;
}

#magazine-hero .hero-content-magazine {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 250px auto 0 auto; /* Add margin-top for navbar height */
    padding: 0 20px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

#magazine-hero > * {
    width: 100%;
}

#magazine-cta {
    background-color: rgba(40, 175, 176, 0.1);
}

.magazine-cta-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.magazine-cover {
  width: 300px;
  aspect-ratio: 3 / 2; /* 600 / 400 = 1.5 */
  object-fit: contain; 
}

.magazine-cover:hover {
    transform: scale(1.05);
}

.magazine-info-block {
    max-width: 400px;
    text-align: center;
}

.magazine-info-block p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--bistre);
}

.magazine-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
}

/* Takım sayfası için ek stiller */


.team-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 40px;
}

.team-tab {
    padding: 10px 20px;
    background: var(--ghost-white);
    border: 2px solid var(--verdigris);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-tab:hover, .team-tab.active {
    background: var(--verdigris);
    color: var(--ghost-white);
}

.team-grid {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.department-container {
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.department {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--verdigris);
}

.department:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.department-icon {
    font-size: 2.5rem;
    color: var(--verdigris);
    margin-bottom: 20px;
}

.department h3 {
    color: var(--lapis-lazuli);
    margin-bottom: 15px;
}

.department p {
    color: var(--bistre);
    line-height: 1.7;
}


/* Footer */
.footer {
    background-color: var(--bistre);
    padding: 70px 0 20px;
    position: relative;
    color: var(--ghost-white);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo .main {
    color: var(--ghost-white);
}

.footer-logo .sub {
    color: rgba(243, 244, 255, 0.7);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--ghost-white);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--verdigris);
    bottom: -10px;
    left: 0;
}

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

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: rgba(243, 244, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--verdigris);
    padding-left: 5px;
}

.footer-links i {
    width: 20px;
    text-align: center;
    color: var(--verdigris);
}

.footer-social {
    display: flex !important;
    gap: 15px;
    margin-top: 25px;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    color: var(--ghost-white) !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background-color: var(--verdigris) !important;
    color: var(--bistre) !important;
    transform: translateY(-5px);
    border-color: var(--verdigris);
}

.footer-social a i {
    font-size: 1.2rem;
    color: inherit;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(243, 244, 255, 0.1);
    color: rgba(243, 244, 255, 0.6);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--verdigris);
    color: var(--ghost-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}



/* Magazine Page Styles */
.section-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(28, 93, 153, ), rgba(28, 93, 153, 1)) no-repeat;
    color: var(--ghost-white);
    text-align: center;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.magazine-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.magazine-cover {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.magazine-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-card:hover .magazine-cover img {
    transform: scale(1.05);
}

.magazine-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 4rem;
    color: #FFD700; /* Altın sarısı */
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.magazine-badge .fa-certificate {
    position: relative;
}

.magazine-badge .badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--russet);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.fa-certificate {
    color: #FFD700;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

.magazine-info {
    padding: 25px;
}

.magazine-info h3 {
    margin-bottom: 10px;
    color: var(--lapis-lazuli);
}

.magazine-date {
    color: var(--russet);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.magazine-desc {
    margin-bottom: 20px;
    color: var(--bistre);
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Team Page Styles */

#team-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(15, 69, 119, 0.5), rgb(13, 76, 134)), url('../../Images/Hero/team-hero.webp') no-repeat center center/cover;
    color: var(--ghost-white);
    text-align: center;
}

#team-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); /* 50% transparent black overlay */
    z-index: 1;
    pointer-events: none;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 60%;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--lapis-lazuli);
}

.team-role {
    color: var(--verdigris);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-university {
    color: var(--bistre);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 175, 176, 0.1);
    color: var(--verdigris);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--verdigris);
    color: white;
}

.join-content {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.join-content h2 {
    margin-bottom: 15px;
    color: var(--lapis-lazuli);
}


.join-content p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--bistre);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px auto 0;
    max-width: 1200px; /* İsteğe bağlı: maksimum genişlik ekleyebilirsiniz */
    justify-content: center;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--verdigris);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--lapis-lazuli);
}

.contact-card p {
    color: var(--bistre);
}

.contact-card a {
    color: var(--verdigris);
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--lapis-lazuli);
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h2 {
    margin-bottom: 20px;
    color: var(--lapis-lazuli);
}

.form-info p {
    margin-bottom: 30px;
    color: var(--bistre);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 175, 176, 0.1);
    color: var(--verdigris);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--verdigris);
    color: white;
}

.form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--lapis-lazuli);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(40, 175, 176, 0.3);
    border-radius: 5px;
    background-color: rgba(40, 175, 176, 0.05);
    color: var(--bistre);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--verdigris);
    background-color: rgba(40, 175, 176, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form .btn {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 30px;
    background: rgba(40, 175, 176, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--verdigris);
    margin-bottom: 15px;
}

#contact-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../../Images/Hero/contact-hero.webp') no-repeat center center / cover;
    color: var(--ghost-white);
    text-align: center;
}


.contact-hero-content {
    text-align: center;
    max-width: 800px;   
    margin: 70px auto 0 auto;
}
        
.custom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%231C5D99"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%231C5D99"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231C5D99"></path></svg>');
    background-size: cover;
    z-index: 1;
    opacity: 0.3;
}

/* 1. Dağ + Kurt Silüeti */
.wolf-mountain {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%231C5D99" d="M0,0V120H1200V0C1000,80 800,100 600,80 400,60 200,40 0,0Z"/><path fill="%231C5D99" d="M900,40c-20,10 -40,15 -60,10 -20,-5 -40,-20 -60,-15 -20,5 -40,30 -60,25 -20,-5 -40,-40 -60,-35 -20,5 -40,50 -60,45 -20,-5 -40,-60 -60,-55 -20,5 -40,70 -60,65 -20,-5 -40,-80 -60,-75 -20,5 -40,90 -60,85V120H1200V40Z"/><path fill="%2333261D" d="M500,30c10,-20 30,-20 40,-10 10,10 10,30 0,40 -10,10 -30,10 -40,0 -10,-10 -10,-30 0,-40zM520,35a5,5 0 1 0 -10,0 5,5 0 1 0 10,0z"/></svg>');
}

/* 2. Kilim Deseni */
.kilim {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%2328AFB0" width="100" height="100"/><path fill="none" stroke="%23F3F4FF" stroke-width="2" d="M20,20 Q40,10 60,20 T100,20 M20,40 Q40,30 60,40 T100,40 M20,60 Q40,50 60,60 T100,60"/><circle fill="%23F3F4FF" cx="30" cy="30" r="2"/><circle fill="%23F3F4FF" cx="70" cy="30" r="2"/><circle fill="%23F3F4FF" cx="50" cy="50" r="2"/></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    height: 80px;
}

/* 3. Geleneksel Dalga */
.traditional-wave {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%2328AFB0" d="M0,0V120H1200V0C1000,30 800,60 600,45 400,30 200,15 0,0Z"/></svg>');
}

/* 4. Tamga (Türk Damgası) Deseni */
.tamga-pattern {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%231C5D99" d="M50,10L70,50H30Z M30,50L50,90L70,50Z M35,50H65V55H35Z"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

/* Responsive */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

@media (max-width: 991px) {
    .container {
        width: 90%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .mission, .vision {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    
    .nav-menu {
        display: none; /* Masaüstü menüsü gizlensin */
    }

    .nav-toggle {
        display: block; /* Hamburger ikonu görünür olsun */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .activity-card {
        margin-bottom: 30px;
    }

    .activity-item, 
    .activity-item.reverse {
        flex-direction: column;
    }
    
    .activity-img, 
    .activity-content {
        min-width: 100%;
    }

    .magazine-cta-grid {
        flex-direction: column;
        gap: 30px;
    }

    .magazine-info-block {
        max-width: 100%;
    }

    .team-tabs {
        justify-content: center;
    }
    
    .team-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 684px) {
    .container {
        width: 95%;
        padding: 20px 10px;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .magazine-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 500px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .activity-content h3 {
        font-size: 1.7rem;
    }
    
    .activity-content p {
        font-size: 1.05rem;
    }
    
    .magazine-cover {
        width: 100%;
        height: auto;
    }
    
    .magazine-info-block {
        max-width: 100%;
    }
    .logo img {
        height: 46px;
        width: auto;
        object-fit: contain;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 220px;
    }

    .logo-text .main {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--lapis-lazuli);
        letter-spacing: 0.5px;
        line-height: 1.1;
        word-break: break-word;
    }

    .logo-text .sub {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        color: var(--russet);
        line-height: 1.1;
        word-break: break-word;
        white-space: normal;
    }

    .header {
        box-shadow: none;
        padding: 5px 0;
    }

    .hero {
        margin-top: 50px !important;
    }

    .section-hero {
        margin-top: 50px !important;
    }

    /* İletişim Sayfası */
    .form-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .form-info,
    .form {
        min-width: 0;
        width: 100%;
        padding: 0;
    }
    .form-info h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .form-info p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .social-links {
        gap: 10px;
    }
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .form-group {
        margin-bottom: 14px;
    }
    .form-group label {
        font-size: 0.98rem;
        margin-bottom: 5px;
    }
    .form-control {
        padding: 10px 10px;
        font-size: 1rem;
    }
    textarea.form-control {
        min-height: 90px;
    }
    .form .btn {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    .form-success {
        padding: 15px;
        font-size: 0.98rem;
    }
    .form-success i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 991px) {
    .activities-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}
