﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00BCC9;
    --secondary-color: #01C6C3;
    --tertiary-color: #C2DBD9;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --earth-brown: #8B7355;
    --earth-beige: #D4C4B0;
    --earth-sage: #9CAF88;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

header {
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-banner {
    height: 90vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image/foto6.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--earth-beige);
}

.services-section {
    padding: 5rem 0;
    background-color: var(--text-light);
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 188, 201, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section {
    padding: 5rem 0;
    background-color: var(--tertiary-color);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.about-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #CCCCCC;
}

.posters-section {
    padding: 5rem 0;
    background-color: var(--text-light);
}

.posters-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.poster-card {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 1rem);
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.poster-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.poster-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #CCCCCC;
}

.poster-content {
    padding: 2rem;
}

.poster-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.art-fundamentals {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--earth-beige) 0%, var(--earth-sage) 100%);
}

.fundamentals-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.fundamental-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.fundamental-icon {
    margin-bottom: 1.5rem;
}

.fundamental-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--earth-brown);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--text-light);
    color: var(--earth-brown);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color);
    color: var(--text-light);
}

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
 
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--text-light);
}

.contact-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--tertiary-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 201, 0.3);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.success-section {
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    max-width: 600px;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.artists-section {
    padding: 5rem 0;
}

.artist-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
    flex-wrap: wrap;
}

.artist-card:nth-child(even) {
    flex-direction: row-reverse;
}

.artist-image {
    flex: 1;
    min-width: 300px;
}

.artist-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #CCCCCC;
}

.artist-info {
    flex: 1;
    min-width: 300px;
}

.artist-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.artist-style {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--tertiary-color);
    color: var(--text-dark);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section {
    padding: 5rem 0;
    background-color: var(--text-light);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .services-grid,
    .posters-grid,
    .fundamentals-grid {
        flex-direction: column;
    }

    .service-card,
    .poster-card {
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .artist-card,
    .artist-card:nth-child(even) {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-banner {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .services-section,
    .about-section,
    .posters-section,
    .art-fundamentals,
    .stats-section,
    .cta-section {
        padding: 3rem 0;
    }

    .service-card,
    .fundamental-item {
        padding: 1.5rem 1rem;
    }

    .poster-content {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        height: 40px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-banner {
        height: 60vh;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button, .cta-button-large {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .services-section,
    .about-section,
    .posters-section,
    .art-fundamentals,
    .stats-section,
    .cta-section,
    .contact-form-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .fundamental-item,
    .poster-card {
        padding: 1.5rem 1rem;
        min-width: 100%;
    }

    .service-card h3,
    .poster-content h3,
    .fundamental-item h3 {
        font-size: 1.125rem;
    }

    .poster-content {
        padding: 1rem;
    }

    .about-image,
    .artist-image,
    .poster-image img {
        min-width: 100%;
    }

    .about-image {
        min-height: 300px;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .newsletter-form button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .success-content h1 {
        font-size: 1.75rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .artist-info h3 {
        font-size: 1.5rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--secondary-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-banner-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-banner-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-banner-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-banner-decline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.cookie-banner-settings {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--tertiary-color);
}

.cookie-banner-settings:hover {
    background-color: var(--tertiary-color);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.875rem;
    }
}