* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #f8f5f0;
    --accent: #d4af37;
    --accent-light: #f4e4c1;
    --text: #333333;
    --text-light: #666666;
    --quote-bg: #fffaf0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--secondary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Elegant Navigation with Dropdown */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 25px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-main {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover:after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.dropdown-item:hover {
    background: var(--accent-light);
    color: var(--accent);
    padding-left: 32px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

/* Hero Section - Modern & Minimal */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 40px 100px;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe1 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.years {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 3px;
    margin: 40px 0;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Wisdom Section - Quotes & Life Lessons */
.wisdom-section {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.wisdom-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.wisdom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.wisdom-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px 20px;
    color: var(--accent);
    font-size: 1.5rem;
}

.wisdom-content {
    padding: 0 30px 30px;
}

.wisdom-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.quote-section {
    background: var(--quote-bg);
    padding: 80px 0;
    margin: 80px 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 1.8rem;
    color: var(--primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    padding: 0 40px;
}

.quote-text:before,
.quote-text:after {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.quote-text:before {
    top: -20px;
    left: 0;
}

.quote-text:after {
    bottom: -40px;
    right: 0;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Stories Section */
.stories-section {
    padding: 120px 0;
    background: white;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
}

/* Minimal Continuous Gallery */
.gallery-section {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.continuous-gallery {
    display: flex;
    height: 100%;
    position: absolute;
    left: 0;
    align-items: center;
    gap: 30px;
    will-change: transform;
    padding: 0 15px;
}

.gallery-image {
    flex: 0 0 auto;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Live Stream Section */
.stream-section {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    position: relative;
}

.stream-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stream-info {
    padding-right: 40px;
}

.stream-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.stream-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4757;
    position: relative;
}

.status-dot:after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: #ff4757;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.status-dot.live {
    background: #2ed573;
}

.status-dot.live:after {
    background: #2ed573;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1877F2;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1877F2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877F2;
    transform: translateY(-2px);
}

.stream-player {
    position: relative;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: none;
}

.live-badge.live {
    display: block;
    background: #2ed573;
    animation: pulse 1.5s infinite;
}

.stream-placeholder {
    max-width: 400px;
}

.stream-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.creator-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-left: 4px solid var(--accent);
}

.creator-title {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.creator-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 12px;
    margin-bottom: 12px;
}

.contact-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}