/* Retro Style CSS for Thisdomaindontexist123 */
/* Colors: #eec962, #feffd6, #eddcbe, #e2dad0 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #eec962;
    --secondary-color: #feffd6;
    --accent-color: #eddcbe;
    --neutral-color: #e2dad0;
    --text-dark: #3a3a3a;
    --text-light: #666;
    --contrast-color: #8b6914;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-link, .btn-accept {
    padding: 10px 20px;
    border: 2px solid var(--contrast-color);
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-accept:hover, .btn-cookie-link:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Header */
.header {
    background: var(--accent-color);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--contrast-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--contrast-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 28px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--neutral-color);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 30px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    max-width: 450px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease;
}

.slide-image {
    flex: 1;
    max-width: 450px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 10px 10px 0 var(--accent-color);
    animation: fadeInRight 1s ease;
}

.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border: 3px solid var(--contrast-color);
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
}

.btn-hero:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 var(--accent-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: var(--primary-color);
    border: 3px solid var(--contrast-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
}

.slider-btn:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-color);
    border: 2px solid var(--contrast-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--contrast-color);
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--contrast-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.section-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: auto;
    border: 5px solid var(--primary-color);
    box-shadow: 8px 8px 0 var(--accent-color);
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: translateY(-5px);
}

.alt-bg {
    background: var(--accent-color);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border: 3px solid var(--contrast-color);
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--accent-color);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--contrast-color);
    text-decoration: none;
    border: 3px solid var(--contrast-color);
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--secondary-color);
    padding: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.card-icon {
    font-size: 48px;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-link {
    color: var(--contrast-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 10px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.feature-list li .material-icons {
    color: var(--contrast-color);
}

.feature-list-large {
    list-style: none;
    margin: 20px 0;
}

.feature-list-large li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list-large li .material-icons {
    color: var(--contrast-color);
    margin-top: 3px;
}

/* Techniques Grid */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.technique-item {
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.technique-item:hover {
    transform: translateY(-5px);
}

.technique-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.technique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.technique-item:hover .technique-image img {
    transform: scale(1.1);
}

.technique-item h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: var(--contrast-color);
    margin-bottom: 10px;
}

.technique-item p {
    padding: 0 20px 20px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Workshops */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workshop-card {
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.workshop-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-content {
    padding: 25px;
}

.workshop-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.workshop-features {
    list-style: none;
    margin: 20px 0;
}

.workshop-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.workshop-features li .material-icons {
    color: var(--contrast-color);
    font-size: 20px;
}

.btn-workshop {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--contrast-color);
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-workshop:hover {
    background: var(--contrast-color);
    color: var(--secondary-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--contrast-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.content-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border: 5px solid var(--primary-color);
    box-shadow: 8px 8px 0 var(--accent-color);
}

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: 3px solid var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: 4px 4px 0 var(--accent-color);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

.step-content p {
    line-height: 1.7;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.type-card {
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.type-card:hover .type-image img {
    transform: scale(1.1);
}

.type-content {
    padding: 25px;
}

.type-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.type-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.type-features {
    list-style: none;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.type-features li .material-icons {
    color: var(--contrast-color);
    font-size: 20px;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.material-card {
    background: var(--secondary-color);
    padding: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    text-align: center;
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.material-icon {
    font-size: 64px;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

.material-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.material-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.material-specs {
    list-style: none;
    text-align: left;
}

.material-specs li {
    padding: 8px 0;
    border-bottom: 1px solid var(--accent-color);
}

.material-specs li:last-child {
    border-bottom: none;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tool-item {
    background: var(--secondary-color);
    padding: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 4px 4px 0 var(--accent-color);
    text-align: center;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--accent-color);
}

.tool-item .material-icons {
    font-size: 48px;
    color: var(--contrast-color);
    margin-bottom: 15px;
}

.tool-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

.tool-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Preparation Steps */
.preparation-steps {
    list-style: none;
    counter-reset: step-counter;
}

.preparation-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    line-height: 1.7;
}

.preparation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border: 3px solid var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-dark);
    box-shadow: 3px 3px 0 var(--accent-color);
}

/* Techniques List */
.techniques-list {
    max-width: 900px;
    margin: 0 auto;
}

.technique-detail {
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    margin-bottom: 30px;
    padding: 30px;
    transition: all 0.3s ease;
}

.technique-detail:hover {
    transform: translateX(5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.technique-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.technique-header .material-icons {
    font-size: 36px;
    color: var(--contrast-color);
}

.technique-header h3 {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.technique-body ul {
    list-style: none;
    padding-left: 0;
}

.technique-body ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.technique-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--contrast-color);
    font-weight: bold;
}

.advanced-techniques {
    margin-top: 30px;
}

.advanced-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.advanced-item .material-icons {
    font-size: 32px;
    color: var(--contrast-color);
    margin-top: 5px;
}

.advanced-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--contrast-color);
}

.advanced-item p {
    line-height: 1.6;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tip-card {
    background: var(--secondary-color);
    padding: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 4px 4px 0 var(--accent-color);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--accent-color);
}

.tip-card .material-icons {
    font-size: 48px;
    color: var(--contrast-color);
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

.tip-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 4px solid var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 var(--accent-color);
}

.timeline-marker .material-icons {
    color: var(--text-dark);
    font-size: 24px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

.timeline-content p {
    line-height: 1.7;
}

/* Heritage Features */
.heritage-features {
    list-style: none;
    margin-top: 25px;
}

.heritage-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.heritage-features li .material-icons {
    color: var(--contrast-color);
    font-size: 28px;
}

/* Modern Features */
.modern-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.modern-item {
    background: var(--secondary-color);
    padding: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    text-align: center;
    transition: all 0.3s ease;
}

.modern-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.modern-item .material-icons {
    font-size: 56px;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

.modern-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.modern-item p {
    line-height: 1.7;
}

/* Workshops Detailed */
.workshops-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-detailed {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.workshop-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.workshop-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.workshop-detailed-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

.workshop-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-detailed:hover .workshop-detailed-image img {
    transform: scale(1.1);
}

.workshop-detailed-content {
    flex: 1;
    padding: 30px;
}

.workshop-level {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--contrast-color);
    font-weight: bold;
}

.workshop-level .material-icons {
    font-size: 20px;
}

.workshop-detailed-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.workshop-details {
    list-style: none;
    margin: 20px 0;
}

.workshop-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.workshop-details li .material-icons {
    color: var(--contrast-color);
    font-size: 20px;
}

.workshop-learning {
    list-style: none;
    margin: 15px 0 25px;
    padding-left: 20px;
}

.workshop-learning li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.workshop-learning li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--contrast-color);
    font-weight: bold;
}

.workshop-detailed-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

/* Masterclass Info */
.masterclass-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.masterclass-text {
    flex: 1;
}

.masterclass-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.masterclass-features {
    list-style: none;
    margin: 25px 0;
}

.masterclass-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.masterclass-features li .material-icons {
    color: var(--contrast-color);
    font-size: 28px;
}

.masterclass-image {
    flex: 1;
}

.masterclass-image img {
    width: 100%;
    height: auto;
    border: 5px solid var(--primary-color);
    box-shadow: 8px 8px 0 var(--accent-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--contrast-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item .material-icons {
    font-size: 32px;
    color: var(--contrast-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--contrast-color);
}

.contact-item p {
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.map-container-large {
    margin-top: 30px;
    border: 5px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
    overflow: hidden;
}

.map-container-large iframe {
    display: block;
}

/* Contact Form */
.contact-form {
    background: var(--secondary-color);
    padding: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 6px 6px 0 var(--accent-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--contrast-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid var(--primary-color);
    background: var(--secondary-color);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--contrast-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success Section */
.success-section {
    padding: 100px 0;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: var(--contrast-color);
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.success-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.success-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--accent-color);
}

.success-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.success-info .material-icons {
    color: var(--contrast-color);
}

.success-info a {
    color: var(--contrast-color);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.success-info a:hover {
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--contrast-color);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--accent-color);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 5px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--contrast-color);
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info .material-icons {
    color: var(--contrast-color);
    font-size: 20px;
    margin-top: 3px;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--contrast-color);
    transform: translateX(5px);
}

.map-container {
    border: 3px solid var(--primary-color);
    box-shadow: 4px 4px 0 var(--secondary-color);
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--accent-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 15px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-slider {
        height: 500px;
    }

    .slide {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
        gap: 20px;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-image {
        max-width: 100%;
        height: 200px;
    }

    .section {
        padding: 50px 0;
    }

    .section-content,
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .section-content.reverse,
    .content-wrapper.reverse {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid,
    .techniques-grid,
    .workshops-grid,
    .types-grid,
    .materials-grid,
    .tools-grid,
    .tips-grid,
    .modern-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .workshop-detailed {
        flex-direction: column;
    }

    .workshop-detailed:nth-child(even) {
        flex-direction: column;
    }

    .workshop-detailed-image {
        min-width: 100%;
        height: 250px;
    }

    .masterclass-info {
        flex-direction: column;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -25px;
        width: 40px;
        height: 40px;
    }

    .timeline-marker .material-icons {
        font-size: 20px;
    }

    .process-steps {
        padding-left: 0;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-text h2,
    .content-text h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        font-size: 60px;
    }
}

@media (max-width: 320px) {
    .hero-slider {
        height: 350px;
    }

    .slide {
        padding: 20px 15px;
    }

    .slide-content h1 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .card,
    .material-card,
    .tool-item,
    .tip-card {
        padding: 20px;
    }

    .contact-form {
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

