body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 6, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar .logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.btn-back {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-green);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    width: 100%;
    padding: 80px 5% 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Ambient glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(138, 43, 226, 0.15);
    color: #c084fc;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    margin-bottom: 30px;
    animation: fadeSlideUp 0.6s ease-out both;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlideUp 0.6s 0.15s ease-out both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 35px;
    animation: fadeSlideUp 0.6s 0.3s ease-out both;
}

.hero-cta {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(135deg, var(--color-green) 0%, #039e02 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(2, 126, 1, 0.4);
    animation: fadeSlideUp 0.6s 0.45s ease-out both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(2, 126, 1, 0.6);
}

/* ---- Content Sections ---- */
.page-content {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    flex-grow: 1;
}

/* Section layout */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section.reversed {
    direction: rtl;
}

.content-section.reversed>* {
    direction: ltr;
}

/* Glass cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: fit-content;
}

.glass-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-green);
}

.glass-card h2.rust {
    color: var(--color-rust);
}

.glass-card h2.purple {
    color: #c084fc;
}

.glass-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.glass-card p:last-child {
    margin-bottom: 0;
}

/* Poetic verse styling */
.verse-card {
    position: relative;
    padding: 45px 40px;
    text-align: center;
}

.verse-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(138, 43, 226, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.verse-card p {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
}

.verse-card p strong {
    color: #c084fc;
    font-style: normal;
}

/* Art supplies & materials tags */
.material-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.material-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.12);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #c084fc;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
}

.material-tag:hover {
    transform: translateY(-2px);
    background: rgba(138, 43, 226, 0.25);
}

/* Feature list */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-rust);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Info Grid for Details */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
}

.info-box span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-box strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Pottery technique highlights */
.pottery-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.pottery-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(164, 53, 3, 0.12);
    border: 1px solid rgba(164, 53, 3, 0.3);
    color: #ff9b71;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
}

.pottery-tag:hover {
    transform: translateY(-2px);
    background: rgba(164, 53, 3, 0.25);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-rust);
}

.step span {
    background: var(--color-rust);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Image Glass Cards & Gallery */
.image-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    padding: 4px 10px;
}

/* Section divider header */
.section-divider-title {
    text-align: center;
    margin: 80px 0 20px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-divider-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: none;
    margin-bottom: 10px;
}

.section-divider-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Decorative accent line */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8A2BE2, var(--color-green));
    border-radius: 3px;
    margin-bottom: 25px;
}

.accent-line-rust {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-rust), var(--color-green));
    border-radius: 3px;
    margin-bottom: 25px;
}

/* CTA banner */
.cta-banner {
    text-align: center;
    padding: 80px 5%;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    position: relative;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
}

.cta-banner .btn-book {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-green) 0%, #039e02 100%);
    color: white;
    border: none;
    padding: 16px 44px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(2, 126, 1, 0.4);
    position: relative;
}

.cta-banner .btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(2, 126, 1, 0.6);
}

/* Footer */
footer {
    padding: 45px 5%;
    text-align: center;
    background: rgba(5, 5, 6, 0.95);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 60px;
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-section.reversed {
        direction: ltr;
    }

    .glass-card {
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050506;
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #039e02;
}

/* Google Translate styling */
#google_translate_element select.goog-te-combo {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    font-family: 'Outfit', sans-serif !important;
    outline: none !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

#google_translate_element select.goog-te-combo:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--color-green) !important;
    box-shadow: 0 0 10px rgba(2, 126, 1, 0.3) !important;
}

#google_translate_element select.goog-te-combo option {
    background-color: #0b0b0c !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}