﻿/* ===========================
   vibehip Art School Styles
   Modern Artistic Theme
   =========================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #378BA4;
    --secondary: #D78782;
    --accent: #81BECE;
    --dark: #2c1810;
    --light: #faf8f6;
    --text: #4a3428;
    --border: #e8ddd5;
    --gradient-primary: linear-gradient(135deg, #D76955 0%, #D78782 100%);
    --gradient-accent: linear-gradient(135deg, #F9D0C8 0%, rgba(249, 208, 200, 0.3) 100%);
    --shadow-soft: 0 5px 20px rgba(215, 105, 85, 0.15);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* Header */
.header {
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 105, 85, 0.8), rgba(215, 135, 130, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-title {
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* About Section */
.about-section {
    background: white;
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--border);
    min-height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about-badge span {
    font-weight: 700;
    color: var(--primary);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--accent);
    border-radius: 10px;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.external-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.external-link:hover {
    text-decoration: underline;
}

/* Masterclasses Section */
.masterclasses-section {
    background: var(--accent);
}

.masterclass-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.masterclass-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.masterclass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--border);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.card-instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.card-date {
    font-size: 0.9rem;
    color: var(--text);
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    transform: translateX(5px);
}

/* Mentoring Section */
.mentoring-section {
    background: white;
}

.mentoring-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mentoring-visual {
    flex: 1;
    position: relative;
}

.mentoring-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--border);
    min-height: 400px;
    object-fit: cover;
}

.mentoring-features {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    width: 90%;
}

.feature-badge {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.mentoring-content {
    flex: 1;
}

.mentoring-content h2 {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.mentoring-benefits {
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(249, 208, 200, 0.5) 100%);
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateX(10px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.event-details p {
    margin-bottom: 1rem;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

/* Tools Section */
.tools-section {
    background: white;
}

.tools-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tool-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(215, 105, 85, 0.2);
}

.tool-icon {
    margin: 0 auto 1.5rem;
}

.tool-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.tools-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.tools-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Instructor Section */
.instructor-section {
    background: var(--accent);
}

.instructor-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.instructor-content {
    flex: 1;
}

.instructor-content h2 {
    margin-bottom: 1.5rem;
}

.instructor-requirements {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.instructor-requirements h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.instructor-requirements ul {
    list-style: none;
}

.instructor-requirements li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.instructor-visual {
    flex: 1;
}

.instructor-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--border);
    min-height: 400px;
    object-fit: cover;
}

/* Certificates Section */
.certificates-section {
    background: white;
}

.certificates-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.certificates-text {
    flex: 1;
}

.certificates-text h2 {
    margin-bottom: 1.5rem;
}

.certificates-text p {
    margin-bottom: 1.5rem;
}

.certificate-features {
    list-style: none;
    margin: 2rem 0;
}

.certificate-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

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

.certificate-preview {
    flex: 1;
}

.certificate-preview img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--border);
    min-height: 400px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--dark);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form .btn {
    align-self: flex-start;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Card Styles */
.enhanced-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(215, 105, 85, 0.1);
}

.enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Buttons */
.btn-enhanced {
    position: relative;
    overflow: hidden;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* Scroll Animation Styles */
.scrolled {
    animation: fadeInUp 0.6s ease forwards;
}

/* Form Enhancement */
input.has-value,
textarea.has-value {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(215, 105, 85, 0.1);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Policy Pages Styles */
.policy-hero {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.policy-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.policy-content {
    padding: 5rem 0;
    background: white;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.policy-section h3 {
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul, 
.policy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.last-updated {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.highlight-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light);
        transition: left 0.3s ease;
        padding: 2rem;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-grid,
    .mentoring-layout,
    .instructor-layout,
    .certificates-content {
        flex-direction: column;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .masterclass-grid {
        flex-direction: column;
    }
    
    .masterclass-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tools-grid {
        flex-direction: column;
    }
    
    .tool-card {
        min-width: 100%;
    }
    
    .policy-hero {
        padding: 3rem 0 2rem;
    }
    
    .policy-content {
        padding: 3rem 0;
    }
}