/* ==================== HOME PAGE STYLES ==================== */
body { background-color: red Im !important;}
/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 40% 60% 50% 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50% 40% 60% 50%;
    filter: blur(50px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: var(--color-white);
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-beige);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-beige-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50% 40% 60% 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 60% 50% 40% 50%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), transparent);
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.title-underline::before {
    left: -15px;
}

.title-underline::after {
    right: -15px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-black-soft);
}

/* Instagram Section */
.instagram-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 45% 55% 50% 50%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 25px;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay span {
    color: var(--color-white);
    font-weight: 500;
}

.instagram-overlay svg {
    width: 50px;
    height: 50px;
}

.loading {
    text-align: center;
    padding: var(--spacing-md);
    color: var(--color-gray);
}

.instagram-section .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Scroll-triggered Animations */
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-content.animate-in .about-text p {
    opacity: 1;
    transform: translateX(0);
}

.about-text p:nth-child(1) { transition-delay: 0.1s; }
.about-text p:nth-child(2) { transition-delay: 0.2s; }
.about-text p:nth-child(3) { transition-delay: 0.3s; }
.about-text p:nth-child(4) { transition-delay: 0.4s; }
.about-text p:nth-child(5) { transition-delay: 0.5s; }

.section-header {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.instagram-post {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.instagram-post.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.instagram-post:hover {
    transform: translateY(-5px) scale(1);
}

/* Staggered animation for Instagram posts */
.instagram-post:nth-child(1) { transition-delay: 0.1s; }
.instagram-post:nth-child(2) { transition-delay: 0.2s; }
.instagram-post:nth-child(3) { transition-delay: 0.3s; }
.instagram-post:nth-child(4) { transition-delay: 0.4s; }
.instagram-post:nth-child(5) { transition-delay: 0.5s; }
.instagram-post:nth-child(6) { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 350px;
    }
}