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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #e8e3db;
}

header {
    background: #e8e3db;
    padding: 1.5rem 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left a, .nav-right a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover, .nav-right a:hover {
    color: #8b7355;
}

.logo {
    font-size: 2rem;
    font-weight: 1000;
    color: #333;
    font-family: 'Cinzel Decorative', serif;
    font-variant: small-caps;        
    text-decoration: none;

}

.workshop-hero {
    height: 400px;
            border-radius: 50px;
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 2rem 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.workshop-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.workshop-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.workshop-hero p {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.workshop-details {
    padding: 4rem 2rem;
    background: #e8e3db;
}

.workshop-container {
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-info h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.workshop-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.211);
    padding: 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 135, 135, 0.12);
}

.info-card h3 {
    font-size: 1.4rem;
    color: #973c00;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.info-card strong {
    font-size: 1.6rem;
    color: #8b7355;
    display: block;
    margin-bottom: 0.5rem;
}

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .content-card {
            background: rgba(255, 255, 255, 0.198);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .content-card h3 {
            font-size: 1.6rem;
            color: #2c2c2c;
            margin-bottom: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .learn-list {
            display: grid;
            gap: 1rem;
        }

        .learn-item {
            display: flex;
            gap: 1rem;
            align-items: start;
            padding: 0.8rem;
            background: #f8f6f3;
            border-radius: 12px;
            transition: background 0.3s ease;
        }

        .learn-item:hover {
            background: #f0ebe3;
        }

        .bullet {
            width: 8px;
            height: 8px;
            background: #8b7355;
            border-radius: 50%;
            margin-top: 0.6rem;
            flex-shrink: 0;
        }

        .learn-item p {
            color: #555;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .included-item {
            display: flex;
            align-items: start;
            gap: 0.8rem;
            padding: 1rem;
            background: #f8f6f3;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .included-item:hover {
            background: #8b7355;
            color: white;
        }

        .included-item:hover .checkmark {
            background: white;
            color: #8b7355;
        }

        .checkmark {
            width: 24px;
            height: 24px;
            background: #8b7355;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

       

.booking-section {
    text-align: center;

}

.book-btn {
    margin-top: 4rem;
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(54, 100, 1, 0.774);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

@media (max-width: 968px) {
    .workshop-hero {
        height: 350px;
    }
    
    .workshop-hero h1 {
        font-size: 2.5rem;
    }
    
    .workshop-hero p {
        font-size: 1.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-description {
        padding: 2rem;
    }
    
    .workshop-info h2 {
        font-size: 2.2rem;
    }
    
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .workshop-hero h1 {
        font-size: 2rem;
    }
    
    .booking-section {
        padding: 2rem;
    }
    
    .book-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}