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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #015551;
    background-color: #FAF8EB;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation Styles */
.navbar {
    background-color: #5CB8BC;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand/Logo */
.nav-brand {
    display: none;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #5CB8BC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.mobile-nav-link,
.mobile-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-contact-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav-link.active {
    background-color: #015551;
}

.mobile-contact-btn {
    background-color: #015551;
    justify-content: center;
    margin-top: 10px;
}

.mobile-contact-btn.active {
    background-color: #003D3A;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 8px;
}

.nav-link.active {
    background-color: #015551;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: #FFFFFF;
}

.contact-btn {
    background-color: #015551;
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: #003D3A;
}

.contact-btn.active {
    background-color: #2F7F83;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('pics/homepage.jpg') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.logo {
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    align-items: center;
    
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #FAF8EB;
}

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

.mission-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 3px 20px 5px rgba(0,0,0,0.25);
}

.section-title {
    font-size: 64px;
    line-height: 1.33;
    color: #5CB8BC;
    margin-bottom: 40px;
}

.mission-description {
    font-size: 24px;
    line-height: 1.17;
    text-align: justify;
    margin-bottom: 60px;
}

.proud-member {
    text-align: center;
}

.proud-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.33;
    color: #5CB8BC;
    margin-bottom: 20px;
}

.org-logo {
    max-width: 300px;
    height: auto;
}

/* Services Section */
.services-section {
    background-color: #5CB8BC;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: #FAF8EB;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 288px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.33;
    color: #FFFFFF;
    text-align: center;
}

.service-description {
    padding: 30px;
    font-size: 20px;
    line-height: 1.17;
    text-align: justify;
    color: #015551;
    margin-bottom: 20px;
}

.read-more-btn {
    background-color: #FE4F2D;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 26px;
    font-size: 22px;
    cursor: pointer;
    margin: 0 30px 30px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #D4482D;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('pics/about us.jpg') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-title {
    font-size: 128px;
    line-height: 1.33;
    color: #FAF8EB;
    text-shadow: 0 6px 10px rgba(0,0,0,0.25);
    text-align: center;
}

.about-content {
    background-color: #FAF8EB;
}

.about-text-section {
    background-color: #5CB8BC;
    padding: 80px 0;
}

.about-description {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.about-images-section {
    background-color: #5CB8BC;
    padding: 0 0 80px 0;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-image-card {
    background-color: transparent;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
}

.about-footer {
    background-color: #FAF8EB;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('pics/contact us.jpg') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-size: 128px;
    line-height: 1.33;
    color: #FAF8EB;
    text-shadow: 0 6px 11px rgba(0,0,0,0.62);
    text-align: center;
}

.contact-content {
    padding: 100px 0 80px 0;
    background-color: #FAF8EB;
}

.contact-form-section {
    max-width: 1023px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 64px;
    line-height: 1.33;
    color: #5CB8BC;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    background-color: #FAF8EB;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 400;
    color: #015551;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #FAF8EB;
    color: #015551;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B3B3B3;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5CB8BC;
}

.submit-btn {
    background-color: #5CB8BC;
    color: #F5F5F5;
    border: 1px solid #5CB8BC;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4A9FA3;
}

.contact-footer {
    background-color: #FAF8EB;
    margin-top: 50px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

/* Footer Styles */
.footer {
    background-color: #FAF8EB;
    color: #015551;
    padding: 60px 0 40px;
    border-top: 2px solid #5CB8BC;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #5CB8BC 20%, #5CB8BC 80%, transparent);
    box-shadow: 0 1px 3px rgba(92, 184, 188, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.33;
    color: #5CB8BC;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.17;
    color: #015551;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: #015551;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #5CB8BC;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-container {
        padding: 0 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title,
    .contact-form-title {
        font-size: 48px;
    }
    
    .about-title,
    .contact-title {
        font-size: 80px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 6px 10px;
    }
    
    .contact-btn {
        font-size: 16px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero {
        height: 400px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .mission-section,
    .services-section,
    .about-content,
    .contact-content {
        padding: 60px 0;
    }
    
    .section-title,
    .contact-form-title {
        font-size: 36px;
    }
    
    .about-title,
    .contact-title {
        font-size: 60px;
    }
    
    .mission-description {
        font-size: 20px;
    }
    
    .about-description {
        font-size: 24px;
        padding: 40px;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .service-description {
        font-size: 18px;
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-section h4 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-text-section {
        padding: 60px 0;
    }
    
    .about-images-section {
        padding: 0 0 60px 0;
    }
    
    .about-description {
        font-size: 20px;
    }
    
    .about-card-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .mobile-nav-link,
    .mobile-contact-btn {
        font-size: 16px;
        padding: 10px 14px;
    }
    
    .mobile-nav-links {
        padding: 15px;
        gap: 8px;
    }
    
    .hero {
        height: 250px;
        padding: 20px 0;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .mission-content {
        gap: 30px;
    }
    
    .section-title,
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-title,
    .contact-title {
        font-size: 32px;
    }
    
    .about-hero,
    .contact-hero {
        height: 300px;
    }
    
    .mission-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .proud-text {
        font-size: 20px;
    }
    
    .org-logo {
        max-width: 200px;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-grid {
        gap: 30px;
        padding: 0 10px;
    }
    
    .service-card {
        border-radius: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 14px;
        padding: 20px 15px;
    }
    
    .read-more-btn {
        margin: 0 15px 20px;
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .about-text-section {
        padding: 40px 0;
    }
    
    .about-images-section {
        padding: 0 0 40px 0;
    }
    
    .about-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .about-images-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .about-card-image {
        height: 200px;
    }
    
    .contact-content {
        padding: 40px 0 60px 0;
    }
    
    .contact-form-section {
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 15px;
        margin: 0 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 10px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
} 

/* Artists Page Styles */
.artists-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('pics/pexels-heinz-klier-261981-896108 (1).jpg') center/cover;
    height: 500px;
}

.hero-title {
    font-size: 128px;
    line-height: 1.33;
    color: #FAF8EB;
    text-shadow: 0 6px 10px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 32px;
    color: #FAF8EB;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.artists-section {
    padding: 100px 0;
    background-color: #FAF8EB;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image {
    height: 300px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    padding: 30px;
}

.artist-name {
    font-size: 28px;
    color: #015551;
    margin-bottom: 8px;
}

.artist-specialty {
    font-size: 18px;
    color: #5CB8BC;
    margin-bottom: 16px;
}

.artist-description {
    font-size: 16px;
    line-height: 1.5;
    color: #015551;
    margin-bottom: 24px;
}

.view-works-btn {
    background-color: #5CB8BC;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.view-works-btn:hover {
    background-color: #4A9FA3;
}

.cta-section {
    background-color: #5CB8BC;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #FE4F2D;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D4482D;
}

/* Responsive Design for Artists Page */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .artist-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .artists-section {
        padding: 60px 0;
    }
    
    .artist-image {
        height: 250px;
    }
    
    .artist-name {
        font-size: 24px;
    }
    
    .artist-specialty {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
} 

/* Classes Page Styles */
.classes-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('pics/about us.jpg') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classes-hero-content {
    text-align: center;
    padding: 0 20px;
}

.classes-title {
    font-size: 100px;
    line-height: 1.33;
    color: #FAF8EB;
    text-shadow: 0 6px 11px rgba(0,0,0,0.62);
    text-align: center;
}

.classes-cta {
    margin-top: 0;
}

/* Responsive Design for Classes Page */
@media (max-width: 1024px) {
    .classes-title {
        font-size: 80px;
    }
    
    .classes-hero {
        height: 400px;
    }
    
    .about-description {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .classes-title {
        font-size: 60px;
    }
    
    .classes-hero {
        height: 350px;
    }
    
    .about-description {
        font-size: 18px;
        padding: 0 30px;
    }
    
    .about-images-grid {
        padding: 0 30px;
    }
    
    .about-image-card {
        margin-bottom: 30px;
    }
    
    .cta-section.classes-cta {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .classes-title {
        font-size: 30px;
    }
    
    .classes-hero {
        height: 250px;
    }
    
    .about-description {
        font-size: 16px;
        padding: 0 20px;
        text-align: left;
    }
    
    .about-images-grid {
        padding: 0 15px;
    }
    
    .about-image-card {
        margin-bottom: 20px;
    }
    
    .about-card-image {
        height: 200px;
    }
    
    .cta-section.classes-cta {
        padding: 40px 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}