/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #16a085;
    --primary-dark: #138871;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --gray-dark: #2c3e50;
    --gray-medium: #7f8c8d;
    --gray-light: #ecf0f1;
    --white: #ffffff;
    --black: #000000;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Mobilde Yatay Scroll Önleme */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Mobil için Tablo Wrapper */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Mobil Scroll Optimizasyonu */
* {
    -webkit-overflow-scrolling: touch;
}

/* Resim ve Video için */
img, video {
    max-width: 100%;
    height: auto;
}

/* Tablolar için wrapper */
table {
    width: 100%;
    table-layout: auto;
}

/* Mobilde Kaydırma Engellemek */
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 160, 133, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* ===========================
   SECTIONS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.intro-content p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.info-card p {
    font-weight: 600;
    color: var(--primary-color);
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header h1 i {
    margin-right: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* ===========================
   CONTENT SECTION
   =========================== */
.content-section {
    padding: 3rem 0;
    background: var(--gray-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.toc {
    list-style: none;
}

.toc li {
    margin-bottom: 0.8rem;
}

.toc a {
    color: var(--gray-medium);
    padding: 0.5rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.toc a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid var(--warning);
}

.sidebar-card.highlight i {
    font-size: 2rem;
    color: var(--warning);
    display: block;
    margin-bottom: 1rem;
}

.sidebar-card.highlight h4 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.sidebar-card.highlight p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* ===========================
   MAIN CONTENT
   =========================== */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.content-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.content-card h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--gray-dark);
}

.content-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.content-card .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.content-card p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

.content-image {
    width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px var(--shadow);
}

.styled-list {
    list-style: none;
    margin: 1.5rem 0;
}

.styled-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-medium);
    line-height: 1.7;
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===========================
   INFO BOXES
   =========================== */
.tip-box, .info-box, .warning-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-box {
    background: #e8f8f5;
    border-left: 4px solid var(--primary-color);
}

.tip-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-box {
    background: #ebf5fb;
    border-left: 4px solid var(--secondary-color);
}

.info-box i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.warning-box {
    background: #fef5e7;
    border-left: 4px solid var(--warning);
}

.warning-box i {
    color: var(--warning);
    font-size: 1.5rem;
}

.tip-box strong, .info-box strong, .warning-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.tip-box p, .info-box p, .warning-box p {
    margin: 0;
}

/* ===========================
   EQUIPMENT GRID
   =========================== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-item {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.equipment-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.equipment-item h4 {
    margin-bottom: 0.5rem;
}

.equipment-item p {
    font-size: 0.9rem;
}

/* ===========================
   STATS GRID
   =========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-card h4 {
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* ===========================
   TIMELINE
   =========================== */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h4 {
    margin-bottom: 1rem;
}

.timeline-content ul {
    margin-left: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
}

/* ===========================
   STEPS GRID
   =========================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h4 {
    margin-bottom: 0.8rem;
}

/* ===========================
   DO/DONT GRID
   =========================== */
.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.do-card, .dont-card {
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.do-card {
    background: #e8f8f5;
}

.do-card i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dont-card {
    background: #fadbd8;
}

.dont-card i {
    color: var(--danger);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.do-card p, .dont-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===========================
   TABLES
   =========================== */
.body-language-table, .vegetables-table, .schedule-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.body-language-table thead, .vegetables-table thead, .schedule-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.body-language-table th, .vegetables-table th, .schedule-table th,
.body-language-table td, .vegetables-table td, .schedule-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.body-language-table tbody tr:hover,
.vegetables-table tbody tr:hover,
.schedule-table tbody tr:hover {
    background: var(--gray-light);
}

.vegetables-table tr.excellent {
    border-left: 4px solid var(--success);
}

.vegetables-table tr.good {
    border-left: 4px solid var(--secondary-color);
}

.vegetables-table tr.moderate {
    border-left: 4px solid var(--warning);
}

/* ===========================
   PYRAMID
   =========================== */
.pyramid-section {
    margin: 2rem 0;
}

.pyramid-level {
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 10px;
    color: var(--white);
}

.pyramid-level.level-1 {
    background: var(--primary-color);
}

.pyramid-level.level-2 {
    background: var(--secondary-color);
}

.pyramid-level.level-3 {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.pyramid-level h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.pyramid-level p {
    color: var(--white);
    margin: 0;
}

/* ===========================
   FOOD GRID
   =========================== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.food-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.food-card.recommended {
    background: #e8f8f5;
    border: 2px solid var(--success);
}

.food-card.moderate {
    background: #fef5e7;
    border: 2px solid var(--warning);
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.food-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.food-card.recommended i {
    color: var(--success);
}

.food-card.moderate i {
    color: var(--warning);
}

.food-card h4 {
    margin-bottom: 0.5rem;
}

.food-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--success);
    color: var(--white);
}

.badge.warning {
    background: var(--warning);
}

/* ===========================
   FRUITS GRID
   =========================== */
.fruits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.fruit-item {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.fruit-item.safe {
    border: 2px solid var(--success);
}

.fruit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.fruit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fruit-item h4 {
    margin-bottom: 0.5rem;
}

.fruit-item p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0.8rem;
}

.frequency {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===========================
   DANGER GRID
   =========================== */
.danger-card {
    background: linear-gradient(135deg, #fadbd8, #f8d7da);
    border-left: 4px solid var(--danger);
}

.danger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.danger-item {
    background: var(--white);
    border: 2px solid var(--danger);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.danger-item i {
    font-size: 2rem;
    color: var(--danger);
    margin-bottom: 0.8rem;
}

.danger-item h4 {
    margin-bottom: 0.5rem;
    color: var(--danger);
}

.danger-item p {
    font-size: 0.9rem;
}

/* ===========================
   WATER TIPS
   =========================== */
.water-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.water-tip-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.water-tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.water-tip-card h4 {
    margin-bottom: 0.8rem;
}

/* ===========================
   PORTION GUIDE
   =========================== */
.portion-guide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.portion-item {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.portion-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portion-item h4 {
    margin-bottom: 0.5rem;
}

.portion-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.portion-item p {
    font-size: 0.9rem;
}

/* ===========================
   SUPPLEMENTS
   =========================== */
.supplements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.supplement-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.supplement-card h4 {
    margin-bottom: 0.8rem;
}

.supplement-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===========================
   HIGHLIGHT CARDS
   =========================== */
.highlight-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid var(--warning);
}

/* ===========================
   NAVIGATION LINKS
   =========================== */
.nav-links {
    padding: 3rem 0;
    background: var(--white);
}

.nav-links .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-link-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.nav-link-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.nav-link-card:first-child:hover {
    transform: translateX(-5px);
}

.nav-link-card i {
    font-size: 2rem;
}

.nav-link-card span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.nav-link-card strong {
    font-size: 1.2rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-medium);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-light);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet & Mobil Genel Ayarlar */
@media (max-width: 768px) {
    /* Body ve Container */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Navigasyon */
    .navbar .container {
        padding: 0.8rem 15px;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .nav-brand i {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 15px var(--shadow);
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        text-align: center;
        border-radius: 8px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        height: 400px;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Page Header */
    .page-header {
        padding: 2.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Grid Layouts - Tek Sütun */
    .intro-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .equipment-grid,
    .stats-grid,
    .steps-grid,
    .do-dont-grid,
    .food-grid,
    .water-tips,
    .portion-guide,
    .supplements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fruits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .danger-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    /* Content */
    .content-section {
        padding: 2rem 0;
    }
    
    .sidebar {
        order: 2;
        margin-top: 2rem;
    }
    
    .main-content {
        order: 1;
    }
    
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 100%;
        text-align: center;
    }
    
    /* Tables - Responsive */
    .body-language-table,
    .vegetables-table,
    .schedule-table table {
        font-size: 0.85rem;
    }
    
    .body-language-table th,
    .vegetables-table th,
    .schedule-table th,
    .body-language-table td,
    .vegetables-table td,
    .schedule-table td {
        padding: 0.6rem 0.4rem;
    }
    
    /* Navigation Links */
    .nav-links .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-link-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Sections Padding */
    .intro-section,
    .features-section,
    .gallery-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Navbar */
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-brand i {
        font-size: 1.3rem;
    }
    
    /* Hero */
    .hero {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Grid - Tek Sütun */
    .gallery-grid,
    .fruits-grid,
    .danger-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Cards */
    .feature-card,
    .content-card {
        padding: 1.2rem;
    }
    
    .card-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i,
    .feature-icon i {
        font-size: 1.4rem;
    }
    
    /* Info Cards */
    .info-card {
        padding: 1.2rem;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    /* Tables - Scroll */
    .body-language-table,
    .vegetables-table,
    .schedule-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    /* Tablo wrapper mobil */
    .schedule-table,
    table {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    /* Scroll to top button mobil */
    .scroll-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    /* Print button mobil */
    .print-btn {
        bottom: 70px !important;
        right: 15px !important;
        padding: 10px 15px !important;
        font-size: 0.8rem !important;
    }
    
    /* Dark mode toggle mobil */
    .dark-mode-toggle {
        bottom: 125px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    /* Pyramid */
    .pyramid-level {
        padding: 1.2rem;
    }
    
    .pyramid-level h4 {
        font-size: 1.1rem;
    }
    
    /* Steps */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Portions */
    .portion-amount {
        font-size: 1.3rem;
    }
    
    /* Font Sizes */
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
    p, li { font-size: 0.95rem; }
    
    /* Gallery Items */
    .gallery-item img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    /* Fruit Icons */
    .fruit-icon {
        font-size: 2.5rem;
    }
    
    /* CTA Buttons Mobil */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Hero Buttons */
    .hero-buttons .btn {
        margin: 0 auto;
    }
    
    /* Sidebar Cards */
    .sidebar-card {
        margin-bottom: 1.5rem;
    }
    
    /* Styled Lists */
    .styled-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Timeline Mobil */
    .timeline-content ul {
        padding-left: 1rem;
    }
    
    /* Stat Cards */
    .stat-value {
        font-size: 1.6rem;
    }
    
    /* Equipment Items */
    .equipment-item i {
        font-size: 2rem;
    }
    
    /* Do/Dont Cards */
    .do-card, .dont-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Food Cards */
    .food-card {
        padding: 1rem;
    }
    
    /* Danger Items */
    .danger-item {
        padding: 1rem;
    }
    
    .danger-item i {
        font-size: 1.5rem;
    }
    
    /* Water Tips */
    .water-tip-card {
        padding: 1.2rem;
    }
    
    .water-tip-card i {
        font-size: 2rem;
    }
    
    /* Supplement Cards */
    .supplement-card {
        padding: 1rem;
    }
    
    /* Content Images */
    .content-image {
        width: 100%;
        height: auto;
        margin: 1rem 0;
    }
    
    /* Info/Tip/Warning Boxes */
    .tip-box, .info-box, .warning-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .tip-box i, .info-box i, .warning-box i {
        font-size: 1.3rem;
    }
}

/* Çok Küçük Ekranlar (iPhone SE vb.) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-card,
    .content-card {
        padding: 1rem;
    }
    
    /* Daha Küçük Font */
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    p, li { font-size: 0.9rem; }
}

/* Landscape (Yatay) Mobil */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 300px;
    }
    
    .page-header {
        padding: 2rem 0;
    }
}

/* Touch Optimizasyonu */
@media (hover: none) and (pointer: coarse) {
    /* Dokunmatik Cihazlar için */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        padding: 1rem 1.5rem;
    }
    
    .hamburger {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Touch Friendly Links */
    a {
        -webkit-tap-highlight-color: rgba(22, 160, 133, 0.2);
    }
}

/* iOS Safari için Özel Düzenlemeler */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}
