/* ============================================
HOME PAGE STYLES
============================================ */

.navbar{
background: transparent;
backdrop-filter: blur(3px);
}
.logo-link{
color: #fff; 
font-size: 1.55rem;
}
.hamburger span{
    background:#fff;
}

.scrolled .hamburger span,
.hamburger.active span{
   background: var(--text-charcoal); 
}


.hero-slider {
position: relative;
height: 100vh;
min-height: 680px;
overflow: hidden;
display: flex;
align-items: stretch;
background: #000;
}
.nav-link{
color: #fff;
}
.hero-slides {
position: relative;
width: 100%;
height: 100%;
}

.hero-slide {
position: absolute;
inset: 0;
display: flex;
align-items: end;
justify-content: center;
padding: 0 20px;
background-image: var(--slide-image);
background-size: cover;
background-position: center;
opacity: 0;
transform: scale(1.05);
transition: opacity 0.9s ease, transform 0.9s ease;
}


.hero-slide.active {
opacity: 1;
transform: scale(1);
z-index: 1;
}

.hero-slide .hero-content {
position: relative;
z-index: 2;
max-width: 900px;
text-align: center;
color: rgba(255, 255, 255, 0.92);
margin-bottom: 80px;
}

.hero-content > * {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active .hero-content > * {
opacity: 1;
transform: translateY(0);
}

.hero-slide.active .hero-content > *:nth-child(1) { transition-delay: 0.1s; }
.hero-slide.active .hero-content > *:nth-child(2) { transition-delay: 0.2s; }
.hero-slide.active .hero-content > *:nth-child(3) { transition-delay: 0.3s; }
.hero-slide.active .hero-content > *:nth-child(4) { transition-delay: 0.4s; }
.hero-slide.active .hero-content > *:nth-child(5) { transition-delay: 0.5s; }

.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.55rem 1.6rem;
background: rgba(255, 255, 255, 0.18);
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 999px;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}

.hero-title {
margin: 1.5rem 0;
color: #ffffff;
text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.title-line {
display: block;
font-weight: 900;
line-height: 1.12;
}

.hero-tagline {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.1rem, 2vw, 1.4rem);
font-style: italic;
font-weight: 300;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 80px;
letter-spacing: 2px;
}

.tagline-word { display: inline-block; margin: 0 0.5rem; }
.tagline-separator { display: inline-block; margin: 0 0.75rem; color: rgba(255, 255, 255, 0.55); font-weight: 300; }

.hero-description {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.82);
margin-bottom: 2.75rem;
max-width: 640px;
margin-left: auto;
margin-right: auto;
}

.hero-buttons {
display: flex;
gap: 1.25rem;
justify-content: center;
flex-wrap: wrap;
}

.hero-buttons .cta-button {
display: inline-flex;
align-items: center;
padding: 12px 30px;
gap:10px;
font-family: 'Poppins', sans-serif;
font-size: 15px;
font-weight: 400;
text-decoration: none;
border-radius: 50px;
transition: all var(--transition-base);
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: 1px;
}

.cta-button.primary {
background: rgba(255, 255, 255, 0.95);
color: var(--text-charcoal);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-button.primary::before {
background: rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: #395137;
    color: #fff;
}


.cta-button.secondary {
background: transparent;
color: rgba(255, 255, 255, 0.9);
border: 2px solid rgba(255, 255, 255, 0.35);
box-shadow: none;
}

.cta-button.secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.55);
color: #ffffff;
}

.slider-control {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 56px;
height: 56px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.18);
border: 1px solid rgba(255, 255, 255, 0.35);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 3;
transition: all 0.3s ease;
backdrop-filter: blur(12px);
}

.slider-control:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.05);
}

.slider-control.prev { left: 40px; }
.slider-control.next { right: 40px; }

.slider-dots {
position: absolute;
bottom: 90px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 12px;
z-index: 3;
}

.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.35);
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: none;
}

.slider-dot.active {
background: #ffffff;
transform: scale(1.1);
}

.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 3;
color: rgba(255, 255, 255, 0.8);
}

.mouse {
width: 30px;
height: 50px;
border: 2px solid rgba(255, 255, 255, 0.6);
border-radius: 20px;
margin: 0 auto 10px;
position: relative;
}

.wheel {
width: 4px;
height: 10px;
background: rgba(255, 255, 255, 0.8);
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
animation: scroll 2s infinite;
}

@keyframes scroll {
0% { opacity: 1; transform: translateX(-50%) translateY(0); }
100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator p {
font-size: 0.75rem;
letter-spacing: 2px;
text-transform: uppercase;
}

/* Featured Works */
.featured-works {
padding: var(--spacing-xl) 0;
background: var(--white);
}

.works-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-bottom: 4rem;
}

.work-card {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
background: var(--white);
}

.work-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-xl);
}

.work-image {
position: relative;
aspect-ratio: 3/4;
overflow: hidden;
}

.work-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-image img {
transform: scale(1.15);
}

.work-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
display: flex;
align-items: flex-end;
padding: 2rem;
opacity: 0;
transition: opacity var(--transition-base);
}

.work-card:hover .work-overlay {
opacity: 1;
}

.work-info h3 {
color: var(--white);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.work-info p {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 1rem;
}

.work-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--white);
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.875rem;
transition: gap var(--transition-base);
}

.work-link:hover {
gap: 1rem;
}

.view-all {
text-align: center;
}

.view-all-btn {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2.5rem;
background: var(--text-charcoal);
color: var(--white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all var(--transition-base);
box-shadow: var(--shadow-md);
}

.view-all-btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
gap: 1rem;
}

/* Artist Statement */
.artist-statement {
padding: var(--spacing-xl) 0;
background: var(--accent-cream);
}

.statement-content {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
align-items: center;
}

.statement-image {
position: relative;
}

.image-frame {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-xl);
transform: rotate(-2deg);
transition: transform var(--transition-base);
}

.image-frame:hover {
transform: rotate(0deg) scale(1.02);
}

.image-frame img {
width: 100%;
height: auto;
display: block;
}

.frame-decoration {
position: absolute;
top: -20px;
right: -20px;
width: 100px;
height: 100px;
background: var(--primary-rose);
border-radius: 50%;
opacity: 0.3;
z-index: -1;
}

.statement-text {
padding: 2rem 0;
}

.statement-label {
display: inline-block;
padding: 0.5rem 1.5rem;
background: var(--white);
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
color: var(--text-slate);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 1.5rem;
box-shadow: var(--shadow-sm);
}

.statement-title {
margin-bottom: 2rem;
}

.statement-quote {
position: relative;
padding-left: 3rem;
margin-bottom: 2rem;
}

.statement-quote i {
position: absolute;
top: 0;
left: 0;
font-size: 3rem;
color: var(--primary-rose);
opacity: 0.3;
}

.statement-quote p {
font-size: 1.125rem;
line-height: 1.9;
margin-bottom: 1.5rem;
font-style: italic;
color: var(--text-slate);
}

.statement-link {
display: inline-flex;
align-items: center;
gap: 0.75rem;
color: var(--text-charcoal);
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: gap var(--transition-base);
}

.statement-link:hover {
gap: 1.25rem;
}

/* Stats Section */
.stats-section {
padding: var(--spacing-xl) 0;
background: var(--text-charcoal);
color: var(--white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.stat-item {
text-align: center;
}

.stat-number {
font-family: 'Playfair Display', serif;
font-size: 4rem;
font-weight: 900;
background: var(--gradient-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
line-height: 1;
}

.stat-label {
font-size: 1rem;
color: rgba(255, 255, 255, 0.8);
text-transform: uppercase;
letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
.statement-content {
grid-template-columns: 1fr;
gap: 3rem;
}
}

@media (max-width: 968px) {
.hero {
min-height: 600px;
}

.hero-title {
font-size: 3rem;
}

.works-grid {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.statement-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 600px) {
.hero-title {
font-size: 2.5rem;
}

.hero-tagline {
font-size: 1.5rem;
}

.hero-buttons {
flex-direction: column;
width: 100%;
}

.cta-button {
width: 100%;
justify-content: center;
}

.works-grid {
grid-template-columns: 1fr;
}
}


.social-links{
justify-self: end;

}

.social-links a{
text-decoration: none;

color: #fff;
font-size: 1.2rem;
transition: all 0.3s ease;
padding: 0.5rem;
border-radius: 50%;


}