/* 
 * Custom Font Declarations
 * 
 * IMPORTANT: Console errors for missing fonts are EXPECTED and harmless.
 * The website automatically uses fallback fonts (Cormorant Garamond) until custom fonts are added.
 * 
 * To eliminate console errors:
 * 1. Create a 'fonts' folder in your project directory
 * 2. Download Anthemia and Polluxie fonts
 * 3. Add font files to the fonts/ folder
 * 4. Errors will disappear automatically
 * 
 * The site works perfectly with fallback fonts - these errors don't affect functionality.
 */

/* Anthemia Font Declaration - Headings */
@font-face {
    font-family: 'Anthemia';
    src: url('fonts/AnthemiaRegular.woff2') format('woff2'),
         url('fonts/AnthemiaRegular.woff') format('woff'),
         url('fonts/AnthemiaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Anthemia';
    src: url('fonts/AnthemiaMedium.woff2') format('woff2'),
         url('fonts/AnthemiaMedium.woff') format('woff'),
         url('fonts/AnthemiaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Anthemia';
    src: url('fonts/AnthemiaBold.woff2') format('woff2'),
         url('fonts/AnthemiaBold.woff') format('woff'),
         url('fonts/AnthemiaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

/* Polluxie Font Declaration - Body Text */
@font-face {
    font-family: 'Polluxie';
    src: url('fonts/PolluxieRegular.woff2') format('woff2'),
         url('fonts/PolluxieRegular.woff') format('woff'),
         url('fonts/PolluxieRegular.ttf') format('truetype'),
         url('fonts/Polluxie-Regular.woff2') format('woff2'),
         url('fonts/Polluxie-Regular.woff') format('woff'),
         url('fonts/Polluxie-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Polluxie';
    src: url('fonts/PolluxieMedium.woff2') format('woff2'),
         url('fonts/PolluxieMedium.woff') format('woff'),
         url('fonts/PolluxieMedium.ttf') format('truetype'),
         url('fonts/Polluxie-Medium.woff2') format('woff2'),
         url('fonts/Polluxie-Medium.woff') format('woff'),
         url('fonts/Polluxie-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Polluxie';
    src: url('fonts/PolluxieBold.woff2') format('woff2'),
         url('fonts/PolluxieBold.woff') format('woff'),
         url('fonts/PolluxieBold.ttf') format('truetype'),
         url('fonts/Polluxie-Bold.woff2') format('woff2'),
         url('fonts/Polluxie-Bold.woff') format('woff'),
         url('fonts/Polluxie-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4AF37;
    --accent-color: #C9A961;
    --text-dark: #2C2416;
    --text-light: #F5F1E8;
    --bg-light: #FAF8F3;
    --bg-dark: #1A1611;
    --gradient-1: linear-gradient(135deg, #8B7355 0%, #C9A961 100%);
    --gradient-2: linear-gradient(135deg, #D4AF37 0%, #F5E6D3 100%);
    --gradient-3: linear-gradient(135deg, rgba(139, 115, 85, 0.8) 0%, rgba(212, 175, 55, 0.8) 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --heading-font: 'Anthemia', 'Cormorant Garamond', serif;
    --body-font: 'Polluxie', 'Cormorant Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background-color: var(--bg-light);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.85;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.logo-text-sub {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 4px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--body-font);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.75) 0%, rgba(26, 22, 17, 0.85) 100%);
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        animation: none;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-tagline h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-tagline p {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

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

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    will-change: transform;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.scroll-indicator:hover {
    animation-play-state: paused;
}

.scroll-indicator:hover .scroll-arrow {
    transform: rotate(45deg) scale(1.2);
    opacity: 0.9;
}

.scroll-indicator:active {
    transform: translateX(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 25px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--text-light);
    border-bottom: 3px solid var(--text-light);
    transform: rotate(45deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease-out;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-wrapper:hover::before {
    opacity: 1;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.profile-image-wrapper:hover .profile-image {
    transform: scale(1.05);
}

.profile-text {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
}

.profile-description {
    font-family: var(--body-font);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Albums Section */
.albums-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.album-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.album-card.featured-album {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(139, 115, 85, 0.25);
}

.album-card.featured-album:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(139, 115, 85, 0.35);
}

.album-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
    }
}

.album-card:nth-child(1) {
    animation-delay: 0.1s;
}

.album-card:nth-child(2) {
    animation-delay: 0.2s;
}

.album-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.album-cover {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: var(--gradient-1);
    overflow: hidden;
}

.album-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 60%;
    height: 60%;
}

.album-info {
    padding: 1.5rem;
    text-align: center;
}

.album-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
}

.album-artist {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.album-year {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.album-description {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.video-card:nth-child(1) {
    animation-delay: 0.1s;
}

.video-card:nth-child(2) {
    animation-delay: 0.2s;
}

.video-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.video-embed {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px 15px 0 0;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--primary-color);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(139, 115, 85, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video-loading p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.youtube-link-container {
    text-align: center;
    margin-top: 3rem;
}

.youtube-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.youtube-channel-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
}

.youtube-channel-link svg {
    width: 24px;
    height: 24px;
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1611 0%, #2C2416 100%);
    color: var(--text-light);
}

.events-section .section-title {
    color: var(--text-light);
}

.events-section .section-title::after {
    background: var(--gradient-2);
}

.event-card {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 1.5rem;
    background: var(--gradient-2);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.event-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-day {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.event-details {
    flex: 1;
}

.event-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.event-description {
    font-family: var(--body-font);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

.event-location {
    font-family: var(--body-font);
    font-size: 1rem;
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Limit homepage blog grid to 3 columns */
#blog .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Blog page can show all posts in grid */
.blog-page-header + .blog-section .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.blog-image-placeholder {
    width: 100%;
    padding-top: 60%;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-image-container {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.blog-excerpt {
    font-family: var(--body-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(31, 27, 36, 0.7);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--accent-color);
}

.blog-section-footer {
    margin-top: 4rem;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-section .blog-section-footer {
    margin-top: 4rem;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.btn {
    display: inline-block !important;
    padding: 1rem 2.5rem;
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.blog-section-footer .btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-primary {
    background: var(--gradient-1) !important;
    background: linear-gradient(135deg, #8B7355 0%, #C9A961 100%) !important;
    color: white !important;
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.4);
    color: white !important;
    background: linear-gradient(135deg, #8B7355 0%, #C9A961 100%) !important;
}

#blog .blog-section-footer .btn.btn-primary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #8B7355 0%, #C9A961 100%) !important;
    color: white !important;
}

/* Blog Page Header */
.blog-page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
    margin-top: 80px;
}

.blog-page-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.blog-page-subtitle {
    font-family: var(--body-font);
    font-size: 1.3rem;
    color: rgba(44, 36, 22, 0.7);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-link.active {
    color: var(--secondary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
}

.contact-item p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-hover);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 90vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-tagline h2 {
        font-size: 3rem;
    }

    .hero-tagline p {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 85vh;
        min-height: 500px;
        max-height: 700px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
    
    .hero-tagline {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .hero-tagline h2 {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.4rem;
    }
    
    .hero-tagline p {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .hero-image img {
        animation-duration: 30s;
        animation-name: zoomInMobile;
    }

    @keyframes zoomInMobile {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(1.05);
        }
    }

    .hero::before {
        animation-duration: 25s;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .youtube-channel-link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
        min-height: 450px;
        max-height: 600px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 1rem 0.75rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.8px;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .hero-tagline {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }

    .hero-tagline h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .hero-tagline p {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .hero-image img {
        animation: none;
        transform: scale(1);
    }

    .scroll-indicator {
        bottom: 20px;
        padding: 8px;
    }
    
    .scroll-indicator:hover .scroll-arrow {
        transform: rotate(45deg) scale(1.15);
    }

    .scroll-arrow {
        width: 25px;
        height: 25px;
        border-right: 2px solid var(--text-light);
        border-bottom: 2px solid var(--text-light);
    }

    .logo-text-main {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .logo-text-sub {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .logo-text-container {
        gap: 2px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-text-container {
        gap: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .album-title {
        font-size: 1.5rem;
    }
    
    .videos-grid {
        gap: 1.25rem;
    }

    .video-info {
        padding: 1.25rem;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-meta {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    #blog .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-excerpt {
        font-size: 1rem;
    }

    .blog-page-title {
        font-size: 2.5rem;
    }

    .blog-page-subtitle {
        font-size: 1rem;
    }

    .youtube-channel-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .youtube-channel-link svg {
        width: 20px;
        height: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-title {
        font-size: 1.4rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-section-footer {
        margin-top: 3rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #blog .blog-section-footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .blog-page-header {
        padding: 100px 0 50px;
    }

    .blog-page-title {
        font-size: 3rem;
    }

    .blog-page-subtitle {
        font-size: 1.1rem;
    }
}

/* Smooth scroll animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

