/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar photo styling - square */
.navbar-photo-square {
    width: 72px;
    height: 72px;
    object-fit: cover;
    margin-right: 24px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #fff;
    filter: none;
}

.navbar-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: none;
    box-shadow: none;
    background: none;
    display: block;
}

/* Header/Navigation */
.header {
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

/* Normal nav menu (desktop) */
.nav-menu {
    display: flex;
    gap: 48px;
    margin-left: 48px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    letter-spacing: 0.5px;
    padding: 4px 0;
    position: relative;
    text-align: center;
}

.nav-link:hover {
    color: #3B82F6;
    background: none;
}

/* Hamburger Button - Default hidden */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 2000;
    position: fixed;
    top: 20px;
    right: 20px;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 480px;
    margin-top: 100px;
    background: #F5F5F5;
}

.hero-left {
    flex: 1;
    background: #ededed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #222;
    padding: 80px 60px;
    text-align: center;
}

.hero-title {
    font-family: 'Koh Santepheap', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #222;
}

.hero-subtitle {
    font-family: 'Jacques Francois', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
}

.btn-contact {
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
    letter-spacing: 0.5px;
}

.btn-contact:hover {
    background: linear-gradient(90deg, #2563EB 0%, #3B82F6 100%);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.18);
}

.hero-right {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
}

.hero-right img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 18px;
}

.about-header .about-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 4px;
}

.about-header .about-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about-content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.about-image img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #e0e0e0;
    display: block;
}

.about-text {
    font-size: 15px;
    color: #222;
    line-height: 1.7;
    text-align: left;
}

.about-quote {
    text-align: center;
    margin-top: 32px;
}

.about-quote .quote-main {
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.about-quote .quote-motto {
    font-weight: bold;
    font-size: 15px;
    font-style: italic;
    display: block;
}

.about-below {
    margin-top: 24px;
    font-size: 15px;
    color: #222;
    line-height: 1.7;
    text-align: left;
}

/* Education Section */
.education {
    padding: 80px 0;
    background: #f8f8f8;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.education-column {
    background: #e0e0e0;
    padding: 40px;
    border-radius: 8px;
}

.education-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.year {
    font-weight: 600;
    color: #000;
    min-width: 80px;
}

.education-item i {
    color: #666;
    font-size: 14px;
}

.course {
    font-size: 14px;
    color: #000;
}

/* Work Areas Section */
.work-areas {
    padding: 80px 0;
    background: #fff;
}

.work-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.work-area-item {
    margin-bottom: 20px;
}

.work-area-item span {
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.work-area-item hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
}

/* Applied Tests Section */
.applied-tests {
    padding: 80px 0;
    background: #f8f8f8;
}

.tests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.tests-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-tag {
    background: #87CEEB;
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
    width: 320px;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
    font-weight: 500;
    letter-spacing: 0.2px;
    display: block;
}

.tests-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Worked Magazines Section */
.worked-magazines {
    padding: 80px 0;
    background: #fff;
}

.magazines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.magazine-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.magazine-item i {
    color: #666;
    font-size: 16px;
}

.magazine-item span {
    font-size: 16px;
    color: #000;
    text-align: center;
}

.worked-magazines .section-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
#anasayfa{
    scroll-margin-top:100px;
}
#dergiler {
  scroll-margin-top: 70px;
}

/* Call to Action Section */
.cta {
    background: #3B82F6;
    color: #fff;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
    padding: 32px 48px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.cta-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.navbar-photo-square {
    width: 250px;
    height: 195px;
    border-radius: 0;
    margin: 0;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 18px;
    font-style: italic;
    color: #222;
}

.btn-appointment {
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
    letter-spacing: 0.5px;
}

.btn-appointment:hover {
    background: linear-gradient(90deg, #2563EB 0%, #3B82F6 100%);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.18);
}

/* Contact Section */
.contact {
    background: #232323;
    color: #fff;
    padding: 80px 0 40px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-weight: 600;
    margin-right: 10px;
}

.contact-value {
    color: #fff;
}

.contact-divider {
    border: none;
    height: 1px;
    background: #fff;
    margin: 20px 0;
}

.social-media span {
    font-weight: 600;
    font-size: 14px;
}

.hours-item {
    justify-content: space-between;
    margin-bottom: 2px;
    gap: 8px;
    font-size: 15px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1a1;
    font-size: 24px;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d63176;
    transform: scale(1.2);
}

.working-hours {
    margin-left: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-left,
  .hero-right {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Nav menu - slide from right */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background-color: #fff;
        padding: 60px 20px 20px;
        box-shadow: -3px 0 12px rgba(0,0,0,0.2);
        overflow-y: auto;
        z-index: 1500;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        margin: 15px 0;
        font-size: 18px;
        color: #222;
        text-align: left;
        width: 100%;
        padding: 12px 0;
        display: block;
        transition: color 0.2s;
    }

    .nav-link:hover {
        color: #3B82F6;
    }

    .working-hours {
        margin-left: 0;
    }

    /* HERO - ALT ALTA */
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    .hero-right img {
        width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 12px;
    }

    /* ABOUT - ALT ALTA */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .about-text {
        font-size: 16px;
        text-align: center;
        line-height: 1.6;
    }

    /* EDUCATION GRID ALT ALTA */
    .education-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* WORK AREAS GRID ALT ALTA */
    .work-areas-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* APPLIED TESTS GRID ALT ALTA */
    .tests-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* WORKED MAGAZINES GRID ALT ALTA */
    .magazines-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* CTA SECTION ALT ALTA */
    .cta-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
        text-align: center;
        display: inline-block;
    
        
    }

    .cta-image {
        min-width: auto;
    }

    /* CONTACT CONTENT ALT ALTA */
    .contact-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* Social icons ortala */
    .social-icons {
        justify-content: center;
    }

    /* FONT SIZE KÜÇÜLT */
    body {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-header .about-title {
        font-size: 22px;
    }

    .about-header .about-subtitle {
        font-size: 16px;
    }
}