/* Import Google Fonts for professional typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;600&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --brown-dark: #1a0f08;
    --brown-medium: #2c1810;
    --brown-light: #4a3528;
    --cream: #f9f7f5;
    --white: #ffffff;
}b

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--brown-medium);
    background-color: var(--cream);
    position: relative;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,175,55,0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.05'%3E%3Cpath d='M50 30 Q 60 40 50 50 Q 40 60 50 70'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    animation: backgroundMove 30s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Luxury Header */
header {
    background: linear-gradient(to bottom, rgba(26,15,8,0.95), rgba(26,15,8,0.9));
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212,175,55,0.3);
    position: relative;
}

.logo h1::before {
    content: '♪';
    position: absolute;
    left: -25px;
    top: -5px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: musicNote 3s ease-in-out infinite;
}

@keyframes musicNote {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 3rem;
    position: relative;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Luxury Hero Section */
.hero {
    background: 
        linear-gradient(45deg, rgba(26,15,8,0.8), rgba(44,24,16,0.6)),
        radial-gradient(circle at center, rgba(212,175,55,0.1), transparent 70%),
        url('/img/violin.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Floating particles effect */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" fill="rgba(212,175,55,0.03)">𝄞</text></svg>') 0 0/10% repeat;
    animation: floatLeft 40s infinite linear;
}

.hero::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" fill="rgba(212,175,55,0.02)">♫</text></svg>') 0 0/8% repeat;
    animation: floatRight 35s infinite linear;
}

@keyframes floatLeft {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, -100%); }
}

@keyframes floatRight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100%, -100%); }
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(212,175,55,0.4);
    line-height: 1.1;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--brown-dark);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}

/* Elegant About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: url('https://images.unsplash.com/photo-1465821185615-20b3c2fbf41b?ixlib=rb-4.0.3&q=80&w=2070') center/cover;
    opacity: 0.05;
    transform: rotate(-15deg);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--brown-dark);
    text-align: center;
    position: relative;
}

.about h2::after {
    content: '⚜';
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.about p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    line-height: 2;
    color: var(--brown-light);
    font-weight: 400;
}

/* Luxury Features */
.features {
    padding: 120px 0;
    background: 
        linear-gradient(to bottom, rgba(44,24,16,0.97), rgba(26,15,8,0.98)),
        url('https://images.unsplash.com/photo-1519508234439-4f23643125c1?ixlib=rb-4.0.3&q=80&w=2070') center/cover;
    color: var(--cream);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--gold);
    transition: all 0.3s;
}

.feature:hover h3 {
    transform: scale(1.05);
}

.feature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
}

/* Elegant Process Section */
.process {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.process h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: var(--brown-dark);
    text-align: center;
    position: relative;
}

.process h2::after {
    content: '❦';
    display: block;
    font-size: 2rem;
    color: var(--gold);
    margin-top: 15px;
    transform: rotate(180deg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.5s;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 40%);
    transition: all 0.5s;
    opacity: 0;
}

.process-step:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.process-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

.process-step p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--brown-light);
    line-height: 1.9;
}

/* Latest Works Section */
.latest-works {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.latest-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.latest-works h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.latest-works h2::after {
    content: '♪';
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--brown-light);
    margin-bottom: 50px;
    font-style: italic;
}

.latest-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.latest-item {
    width: 220px;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.latest-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.latest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.latest-item:hover img {
    transform: scale(1.1);
}

.latest-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.latest-item:hover::before {
    opacity: 1;
}

.latest-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.latest-item:hover .latest-item-info {
    transform: translateY(0);
}

.latest-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 3px;
    font-weight: 600;
}

.latest-item-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.loading-placeholder {
    text-align: center;
    color: var(--brown-light);
    font-style: italic;
    padding: 40px;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--gold);
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.3s;
    z-index: -1;
}

.view-all-btn:hover::before {
    left: 0;
}

.view-all-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

@media (max-width: 768px) {
    .latest-grid {
        gap: 15px;
    }
    
    .latest-item {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 500px) {
    .latest-item {
        width: 160px;
        height: 160px;
    }
}

/* Luxurious Contact Section */
.contact {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(26,15,8,0.98) 0%, rgba(44,24,16,0.98) 100%),
        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&q=80&w=2070') center/cover;
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '🎻';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.contact-info {
    margin-top: 50px;
    background: rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact-info strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 600;
}

/* Elegant Footer */
footer {
    background-color: var(--brown-dark);
    color: var(--cream);
    text-align: center;
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    position: relative;
}

footer::before {
    content: '♪ ♫ ♪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.05;
}

/* Premium Gallery Styles */
.gallery-container {
    padding: 140px 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--cream);
}

.gallery-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin-bottom: 80px;
    color: var(--brown-dark);
    position: relative;
}

.gallery-title::after {
    content: '⚜ Collection ⚜';
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 20px;
    font-weight: 400;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    margin: 0 15px;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: var(--white);
    transition: all 0.5s;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212,175,55,0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--cream);
    padding: 40px;
    transform: translateY(100%);
    transition: transform 0.5s;
    z-index: 2;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info p {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Luxury Upload Page */
.upload-container {
    max-width: 700px;
    margin: 140px auto 80px;
    padding: 70px;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.upload-container::before {
    content: '♫';
    position: absolute;
    top: -60px;
    right: -60px;
    font-size: 250px;
    opacity: 0.05;
    transform: rotate(-15deg);
    color: var(--gold);
}

.upload-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 40px;
    text-align: center;
}

.upload-container h2::after {
    content: '⚜';
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 15px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brown-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.4s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
    outline: none;
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--brown-dark);
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}

/* Mobile menu toggle button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 1s ease-out forwards;
}

.feature, .process-step {
    opacity: 0;
    transform: translateY(30px);
}

.feature.animate-in, .process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top span {
    color: var(--brown-dark);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.scroll-to-top:hover span {
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

/* Pulse animation when first appears */
@keyframes pulse-scroll {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

.scroll-to-top.pulse {
    animation: pulse-scroll 2s;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top span {
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top span {
    color: var(--brown-dark);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.scroll-to-top:hover span {
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

/* Pulse animation when first appears */
@keyframes pulse-scroll {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

.scroll-to-top.pulse {
    animation: pulse-scroll 2s;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top span {
        font-size: 1rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--cream);
}

::-webkit-scrollbar-track {
    background-color: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brown-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading::after {
    content: '♫';
    font-size: 4rem;
    color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Design with Elegance */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26,15,8,0.98);
        display: none;
        padding: 30px 0;
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 3rem;
    }
    
    .about h2, .contact h2, .process h2 {
        font-size: 2.5rem;
    }
    
    .upload-container {
        padding: 40px;
        margin: 100px 20px 60px;
    }
    /* Add this to your existing styles.css */
.latest-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--cream);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.latest-item:hover .latest-item-overlay {
    transform: translateY(0);
}

.latest-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gold);
}

.latest-item-description {
    font-size: 0.8rem;
    margin-bottom: 5px;
    line-height: 1.4;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-item-date {
    font-size: 0.75rem;
    opacity: 0.8;
}
}