/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header-top {
    border-bottom: 1px solid var(--border-color);
}

.logo-link {
    display: inline-block;
}

.logo-img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.header-actions a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: var(--secondary-color);
}

.cart-link .btn {
    font-weight: 600;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.mobile-logo {
    max-height: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.hero-section h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Artists Grid */
.artists-grid {
    background-color: var(--white);
}

.artist-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background-color: var(--white);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.artist-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.artist-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--light-bg);
}

.artist-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-card:hover .artist-image-wrapper img {
    transform: scale(1.1);
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--white);
}

.artist-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.artist-card:hover .artist-name {
    color: var(--secondary-color);
}

/* Trust Badges Section */
.trust-badges {
    border-top: 1px solid var(--border-color);
}

.badge-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-icon {
    max-width: 80px;
    height: auto;
}

.badge-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color) !important;
    border-top: 3px solid var(--secondary-color);
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.asf-link {
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.asf-link:hover {
    opacity: 0.8;
}

.asf-logo {
    max-width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header-top {
        text-align: center;
    }
    
    .header-top .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .header-actions {
        margin-top: 1rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .artist-name {
        font-size: 1.1rem;
    }
    
    .badge-item {
        padding: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card {
    animation: fadeInUp 0.6s ease-out;
}

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.2s; }
.artist-card:nth-child(3) { animation-delay: 0.3s; }
.artist-card:nth-child(4) { animation-delay: 0.4s; }
.artist-card:nth-child(5) { animation-delay: 0.5s; }
.artist-card:nth-child(6) { animation-delay: 0.6s; }
.artist-card:nth-child(7) { animation-delay: 0.7s; }
.artist-card:nth-child(8) { animation-delay: 0.8s; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}




/* About Page Specific Styles */
.about-content {
    background-color: var(--white);
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h3 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-block p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mission-list li:hover {
    background-color: #e3f2fd;
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.artists-paragraph {
    font-size: 1.05rem;
    line-height: 1.9;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image-wrapper img {
    transition: transform 0.5s ease;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.05);
}

.content-block.bg-light {
    border-left: 5px solid var(--secondary-color);
}

.content-block.bg-light h3 {
    border-bottom: none;
    margin-bottom: 1rem;
}

.content-block.bg-light a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.content-block.bg-light a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for About page */
@media (max-width: 767px) {
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .mission-list li {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .artists-paragraph {
        font-size: 0.95rem;
        padding: 1rem;
    }
}


/* News Page Specific Styles */
.news-section {
    background-color: var(--white);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.news-content {
    position: relative;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link::after {
    content: '→';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.news-item:hover .news-link::after {
    transform: translateX(5px);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.news-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
}

.news-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Animation for news items */
.news-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive adjustments for News page */
@media (max-width: 767px) {
    .news-item {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-excerpt {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .news-list {
        gap: 1.5rem;
    }
    
    .news-item {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.15rem;
    }
}



/* Contact Page Specific Styles */
.contact-section {
    background-color: var(--white);
}

.contact-form-wrapper,
.contact-info-wrapper {
    height: 100%;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Contact Form Styles */
.contact-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-form .required {
    color: var(--accent-color);
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
}

/* Contact Info Styles */
.contact-info-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: #e3f2fd;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-content {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Map Section Styles */
.map-section {
    border-top: 1px solid var(--border-color);
}

.map-section h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.google-map {
    border-radius: 12px;
    display: block;
}

/* Responsive adjustments for Contact page */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-form .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-info-item {
        padding: 1.25rem;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-form .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Animation for contact items */
.contact-form-wrapper,
.contact-info-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-item {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info-item:nth-child(4) {
    animation-delay: 0.4s;
}


/* Originals Page Specific Styles */
.originals-grid {
    background-color: var(--white);
}

.original-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background-color: var(--white);
}

.original-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.original-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.original-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--light-bg);
}

.original-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.original-card:hover .original-image-wrapper img {
    transform: scale(1.15);
}

/* Overlay Effect */
.original-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.original-card:hover .original-overlay {
    opacity: 1;
}

.view-collection {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.original-card:hover .view-collection {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.original-info {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--white);
}

.original-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.original-card:hover .original-name {
    color: var(--secondary-color);
}

/* Originals Info Box */
.originals-info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.originals-info-box h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.originals-info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Animation */
.original-card {
    animation: fadeInUp 0.6s ease-out;
}

.original-card:nth-child(1) {
    animation-delay: 0.1s;
}

.original-card:nth-child(2) {
    animation-delay: 0.2s;
}

.original-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive adjustments for Originals page */
@media (max-width: 991px) {
    .originals-info-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .original-name {
        font-size: 1.1rem;
    }
    
    .view-collection {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .originals-info-box {
        padding: 2rem 1.25rem;
    }
    
    .originals-info-box h3 {
        font-size: 1.5rem;
    }
    
    .originals-info-box p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .original-info {
        padding: 1.25rem;
    }
}






