/* Base Styles */
:root {
    --primary-color: #fc7d48;
    --secondary-color: #9B59B6;
    --accent-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #fc7d48 0%, #9B59B6 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Navigation */
.custom-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    text-decoration: none;
}

.logo {
    height: 100px;
    width: auto;
    margin-right: 15px;
    filter: brightness(1.05) contrast(1.05);
}

.brand-text {
    color: #c08f66;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/g33701c8677bf8f8e1b49fee846c6d6a2b0e49073a6418780cbcf94f050a6325ddf7823be76823ac9ab0df050f30f192f77e75e1c22155f57e33eaea75497739f_1280.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    padding-top: 100px;
    z-index: 1;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #c08f66;
}

.hero-text .lead {
    font-size: 1.25rem;
    color: #c08f66;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-artwork {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    filter: drop-shadow(var(--shadow-medium)) brightness(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Artwork Gallery */
.collection-section {
    margin-bottom: 4rem;
}

.collection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: capitalize;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.artwork-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

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

.artwork-image-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
}

.artwork-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 115, 255, 0.9);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.artwork-card:hover .artwork-overlay {
    opacity: 1;
}

.artwork-info h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.artwork-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.artwork-details {
    padding: 1.5rem;
}

.artwork-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.artwork-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Poetry Styles */
.poem-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    margin-bottom: 3rem;
}

.poem-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.poem-source {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-light);
}

.poem-text {
    margin: 2rem 0;
}

.poem-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.poem-break {
    height: 1rem;
}

.poem-divider {
    text-align: center;
    padding: 2rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Poetry Tiles */
.poetry-tile {
    background: var(--bg-white);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.poetry-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.poetry-image-container {
    position: relative;
    overflow: hidden;
}

.poetry-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transition: var(--transition);
    opacity: 0;
}

.poetry-tile:hover .poetry-overlay {
    opacity: 1;
}

.poetry-verse {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.poetry-reference {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

.poetry-info {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poetry-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.poetry-attribution {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .poetry-verse {
        font-size: 1rem;
    }
    
    .poetry-tile {
        margin-bottom: 1.5rem;
    }
}

/* NFT Cards */
.nft-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

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

.nft-image-container {
    position: relative;
    padding-bottom: 100%; /* 1:1 Aspect Ratio for NFTs */
    overflow: hidden;
}

.nft-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.nft-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.nft-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.nft-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.nft-pricing {
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Stats */
.stat-item, .stat-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/g337b8f217c1d2d9ef5ec78a70e5cd53d49da9611636066dffb51bd55c76e3ce0854c6b6867156f6f1fd05072569c21302369117df5dd96cacece724241018355_1280.jpg') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.quote-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/g33701c8677bf8f8e1b49fee846c6d6a2b0e49073a6418780cbcf94f050a6325ddf7823be76823ac9ab0df050f30f192f77e75e1c22155f57e33eaea75497739f_1280.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--bg-light) !important;
    border-top: 1px solid #e9ecef;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .poem-card {
        padding: 2rem;
    }
    
    .poem-line {
        font-size: 1.1rem;
    }
    
    .feature-card, .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 120px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .btn, footer {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
