/* Boncuk Taki Akademi - Main Stylesheet */
/* Türk tarzı boncuk takı yapım rehberi - Unique structure, similar to original */

:root {
    --color-main: #C9A882;
    --color-secondary: #E8DDD0;
    --color-accent: #A67C52;
    --color-accent-light: #D4B896;
    --color-text-main: #2F2418;
    --color-text-secondary: #5A4A3A;
    --color-background: #F5F1EB;
    --color-white: #FFFFFF;
    --color-border: #D9CBB8;
    --color-success: #8B7355;
    --shadow-small: rgba(47, 36, 24, 0.08);
    --shadow-medium: rgba(47, 36, 24, 0.12);
    --shadow-large: rgba(47, 36, 24, 0.2);
    --gradient-main: linear-gradient(145deg, #C9A882 0%, #E8DDD0 100%);
    --gradient-accent: linear-gradient(145deg, #A67C52 0%, #C9A882 100%);
    --gradient-hero: linear-gradient(135deg, rgba(201, 168, 130, 0.95) 0%, rgba(166, 124, 82, 0.9) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Loader */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-beads {
    display: flex;
    gap: 10px;
}

.loader-beads .bead {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: bounce-load 1.4s infinite ease-in-out;
}

.loader-beads .bead:nth-child(1) { animation-delay: -0.32s; }
.loader-beads .bead:nth-child(2) { animation-delay: -0.16s; }
.loader-beads .bead:nth-child(3) { animation-delay: 0s; }
.loader-beads .bead:nth-child(4) { animation-delay: 0.16s; }

@keyframes bounce-load {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* Header */
.top-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-main);
}

@media (max-width: 768px) {
    .top-header {
        border-bottom: none;
    }
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    position: relative;
    box-shadow: 0 4px 15px var(--shadow-medium);
    animation: icon-spin 8s linear infinite;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

@keyframes icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 1px;
}

.navigation-menu {
    position: relative;
}

.menu-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-text-main);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.menu-link {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s;
    display: block;
}

.menu-link:hover {
    color: var(--color-accent);
}

.menu-link.active {
    color: var(--color-accent);
}

/* Main Content */
.content-area {
    flex: 1;
}

/* Hero Section */
.hero-area {
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-main-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--color-accent);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.hero-features-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.preview-item svg {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-stats-box {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-box {
    text-align: center;
    min-width: 80px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    background: #C89564;
}

/* Features Section */
.features-area {
    padding: 80px 0;
    background: var(--color-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--color-background);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--color-main);
}

.features-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card-modern {
    background: var(--color-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-small);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--color-accent-light);
}

.feature-icon-container {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px var(--shadow-small);
    transition: all 0.4s;
}

.feature-icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 18px;
    opacity: 0.2;
    z-index: 1;
    transition: all 0.4s;
}

.feature-card-modern:hover .feature-icon-image {
    transform: scale(1.05);
}

.feature-card-modern:hover .feature-icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
    font-weight: 700;
}

.feature-content p {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.feature-link:hover {
    color: var(--color-accent);
    gap: 12px;
}

.feature-link svg {
    transition: transform 0.3s;
}

.feature-link:hover svg {
    transform: translateX(4px);
}

.feature-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: all 0.3s;
}

.feature-item:hover .feature-icon-img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.feature-item a {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-item a:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery-area {
    padding: 80px 0;
    background: var(--color-background);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-masonry .gallery-card:nth-child(1) {
    grid-row: span 2;
}

.gallery-masonry .gallery-card:nth-child(2) {
    grid-column: span 1;
}

.gallery-masonry .gallery-card:nth-child(3) {
    grid-column: span 1;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px var(--shadow-small);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow-medium);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(166, 124, 82, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-overlay-content {
    color: white;
}

.gallery-overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-overlay-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

/* Footer */
.bottom-footer {
    background: var(--color-text-main);
    color: white;
    padding: 50px 0 25px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-block ul li a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Page Content Styles */
.page-hero {
    background: var(--gradient-main);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.content-section {
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 12px 15px;
        position: relative;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .menu-toggle-btn {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .navigation-menu {
        position: static;
    }

    .menu-list {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow-medium);
        gap: 0;
        max-height: calc(100vh - 62px);
        overflow-y: auto;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                    visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        border-top: 3px solid var(--color-main);
    }

    .menu-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-list li {
        width: 100%;
    }

    .menu-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
        text-align: left;
        width: 100%;
    }

    .menu-list li:last-child .menu-link {
        border-bottom: none;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .features-grid-layout {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry .gallery-card:nth-child(1) {
        grid-row: span 1;
    }

    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-stats-box {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-card-modern {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-container {
        margin: 0 auto;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Content Styles - Matching Original Structure */
.intro-area,
.steps-area,
.highlight-area {
    padding: 60px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-area h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.text-area p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-area img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

/* Steps Timeline */
.steps-timeline {
    margin-top: 40px;
}

.step-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-row::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--color-border);
}

.step-row:last-child::before {
    display: none;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.step-info h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.step-info p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.step-link:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

/* Highlight Card */
.highlight-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-small);
    align-items: center;
}

.highlight-image img {
    width: 100%;
    border-radius: 15px;
}

.highlight-text h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-text-secondary);
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Materials Section */
.materials-area {
    padding: 60px 0;
}

.materials-group {
    margin-bottom: 60px;
}

.group-title {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-main);
}

.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.material-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.material-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.material-visual {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.material-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.material-preview {
    display: none;
}

.material-box h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.material-box p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.material-specs {
    list-style: none;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.material-specs li {
    padding: 5px 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Tips Section */
.tips-area {
    padding: 60px 0;
    background: var(--color-background);
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tip-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
    border-left: 4px solid var(--color-accent);
}

.tip-box h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.tip-box p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Techniques Section */
.techniques-area {
    padding: 60px 0;
}

.technique-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px var(--shadow-small);
    overflow: hidden;
}

.technique-header {
    background: var(--gradient-main);
    padding: 25px 40px;
    margin: -40px -40px 30px -40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.technique-header h2 {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin: 0;
}

.difficulty-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--color-accent);
    color: white;
}

.technique-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.technique-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
}

.technique-info h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.technique-steps {
    list-style-position: inside;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.technique-steps li {
    margin-bottom: 10px;
}

.technique-note {
    background: var(--color-background);
    padding: 20px;
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    margin-top: 20px;
}

.technique-note strong {
    color: var(--color-text-main);
}

/* Project Pages */
.project-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.project-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.project-details {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
}

.project-details h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.project-meta {
    margin-bottom: 20px;
}

.meta-row {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.materials-needed {
    background: var(--color-background);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.materials-needed h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.materials-checklist {
    list-style: none;
}

.materials-checklist li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text-secondary);
}

.materials-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.instructions-area {
    margin-bottom: 40px;
}

.instruction-row {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.instruction-row:last-child {
    border-bottom: none;
}

.instruction-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.instruction-info h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.instruction-info p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.instruction-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
    margin-top: 15px;
}

.variations-area {
    background: var(--color-background);
    padding: 40px;
    border-radius: 15px;
}

.variations-area h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.variation-box {
    background: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
}

.variation-box h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.variation-box p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* About Page */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-block.reverse {
    direction: rtl;
}

.about-block.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text-secondary);
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.values-area {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-small);
    transition: all 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.value-box h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.value-box p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.community-area {
    background: var(--color-background);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.community-area p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.contact-intro p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-intro .link-accent {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-intro .link-accent:hover {
    text-decoration: underline;
    color: var(--color-accent);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px var(--shadow-small);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--color-accent-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px var(--shadow-small);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 5px;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Privacy and Contact Form Styles */
.contact-form-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--color-border);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.contact-form-section > p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.privacy-form {
    max-width: 700px;
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px var(--shadow-small);
    margin-top: 30px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-small);
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-main);
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-field {
    margin-bottom: 25px;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #C89564;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Privacy Page */
.privacy-area {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
}

.privacy-area h2 {
    color: var(--color-text-main);
    margin-bottom: 15px;
    margin-top: 30px;
}

.privacy-area h2:first-child {
    margin-top: 0;
}

.privacy-area p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-area ul {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
}

.last-update {
    margin-top: 30px;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* Tips Categories */
.tips-category {
    margin-bottom: 50px;
}

.tips-category h2 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-main);
}

.tips-list-vertical {
    display: grid;
    gap: 20px;
}

.tip-entry {
    background: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
    border-left: 4px solid var(--color-accent);
}

.tip-entry h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.tip-entry p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Practice Tips */
.practice-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.practice-tip {
    background: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-small);
    border-top: 3px solid var(--color-secondary);
}

.practice-tip h3 {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.practice-tip p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .content-layout,
    .project-intro,
    .technique-body,
    .about-block {
        grid-template-columns: 1fr;
    }

    .instruction-row {
        flex-direction: column;
    }
}

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

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