@font-face {
    font-family: 'Quickpen';
    src: url('/fonts/quickpen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --midnight: #0a0e27;
    --deep-indigo: #1a1b4b;
    --mystic-purple: #2d1b69;
    --cosmic-violet: #4a2c7c;
    --ethereal-blue: #2c3e7a;
    --font-color-primary: #241004;
    --bronze: #cd7f32;
    --gold: #d4af37;
    --warm-gold: #f4e4c1;
    --soft-white: #f8f6f1;
    --breathing-glow: rgba(212, 175, 55, 0.15);
}

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

body {
    font-family: 'Crimson Text', serif;
    background: var(--midnight);
    color: var(--soft-white);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Breathing background animation */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 30%, var(--mystic-purple) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, var(--deep-indigo) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--ethereal-blue) 0%, transparent 70%),
        var(--midnight);
    animation: cosmicBreath 8s ease-in-out infinite;
	background-image: url('../img/sarkany_w.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position-y: 33%;
}

@keyframes cosmicBreath {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Navigation */
.nav {
    /*position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.95), transparent);
    backdrop-filter: blur(10px);
}

.logo {
    /*font-family: 'Quickpen', cursive;*/
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
	font-style: italic;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

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

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

/* Hamburger button - hidden on desktop */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.theme-elegant .nav-hamburger span {
    background: var(--bronze);
}

.nav-link.cta-reg {
    background: var(--bronze);
    color: white !important;
    border-radius: 2rem;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-content {
	max-width: 1400px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	background: linear-gradient(135deg, rgba(232, 228, 223, 0.35), rgba(212, 207, 199, 0.8));
	border: 1px solid rgba(139, 111, 71, 0.15);
	border-radius: 30px;
	padding: 6rem 4rem;
}

.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.8;
	font-style: italic;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
	line-height: 1.2;
    color: var(--warm-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.hero-more {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
	line-height: 1.2;
    color: var(--warm-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-intro {
    font-size: 1.3rem;
    color: var(--soft-white);
    max-width: 600px;
    line-height: 2;
    opacity: 0.9;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
}

.breathing-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /*background: radial-gradient(circle, var(--breathing-glow), transparent 70%);
    border: 1px solid var(--gold);
    animation: breathe 6s ease-in-out infinite;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); /*box-shadow: 0 0 30px var(--breathing-glow);*/ }
    50% { transform: scale(1.05); /*box-shadow: 0 0 60px var(--breathing-glow);*/ }
}

.breathing-circle::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    /*
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: breathe 6s ease-in-out infinite reverse;
     */
}

.breathing-circle::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /*
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: breathe 6s ease-in-out infinite;
     */
}

/* Dragon Image */
.dragon-image {
    position: absolute;
    width: 120%;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: dragonBreath 8s ease-in-out infinite;
}

.dragon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    opacity: 0.99;
    filter: brightness(1.15) contrast(1.2) saturate(1.25);
    mask-image: radial-gradient(circle at center, black 35%, rgba(0,0,0,0.6) 55%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 35%, rgba(0,0,0,0.6) 55%, transparent 75%);
    transition: all 0.6s ease;
}

@keyframes dragonBreath {
    0%, 100% {
        transform: scale(1) rotate(-1deg);
        filter: brightness(1.15) contrast(1.2) saturate(1.25) drop-shadow(0 0 25px rgba(212, 175, 55, 0.05));
    }
    50% {
        transform: scale(1.06) rotate(1deg);
        filter: brightness(1.25) contrast(1.25) saturate(1.35) drop-shadow(0 0 45px rgba(212, 175, 55, 0.07));
    }
}

.breathing-circle:hover .dragon-image img {
    filter: brightness(1.35) contrast(1.3) saturate(1.45);
    transform: scale(1.08);
}

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

/* Section base styles */
.section {
    padding: 8rem 4rem;
    max-width: calc(1308px * 0.66);
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.section-content {
    font-size: 1.25rem;
    line-height: 2.2;
    color: var(--soft-white);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.section-content p {
    margin-bottom: 2rem;
}

.about, .soul-journey, .music-section{
    background: linear-gradient(135deg, rgba(42, 28, 108, 0.3), rgba(44, 62, 122, 0.2));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Journey Section */
.journey {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: center;
    margin: 8rem 4rem;
}

.journey-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.journey-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.journey-image:hover img {
    transform: scale(1.05);
}

.journey-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--mystic-purple) 0%, transparent 100%);
    opacity: 0.3;
    transition: opacity 0.6s;
}

.journey-image:hover::after {
    opacity: 0.1;
}

/* Music Section */
.music-section {
    background: linear-gradient(135deg, rgba(42, 28, 108, 0.3), rgba(44, 62, 122, 0.2));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem;
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--breathing-glow), transparent 70%);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
}

.music-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.music-portrait {
    border-radius: 50%;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px var(--breathing-glow);
    margin: 0 auto;
}

.music-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-section img{
	opacity: 0.7;
	max-width: 400px;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 4rem auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* Podcast Section */
.podcast-section {
    background: linear-gradient(135deg, rgba(29, 27, 75, 0.4), rgba(42, 28, 108, 0.3));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem;
    text-align: center;
}

.audio-player {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    border-radius: 20px;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.audio-player audio {
    width: 100%;
    filter: invert(1) hue-rotate(180deg);
    border-radius: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(232, 228, 223, 0.4), rgba(212, 207, 199, 0.3));
	padding: 4rem 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 8rem;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--warm-gold);
    opacity: 0.7;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .journey,
    .music-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .breathing-circle {
        width: 350px;
        height: 350px;
    }

    .breathing-circle::before {
        width: 280px;
        height: 280px;
    }

    .breathing-circle::after {
        width: 210px;
        height: 210px;
    }

    .dragon-image img {
        width: 95%;
        height: 95%;
    }

    .nav {
        padding: 1.5rem 2rem;
    }

    .section {
        padding: 4rem 2rem;
    }

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

/* ============================================
   ALTERNATIVE ELEGANT THEME
   Activate with ?theme=elegant URL parameter
   ============================================ */

/* Elegant Theme Variables */
body.theme-elegant {
    --midnight: #f9f7f4;
    --deep-indigo: #e8e4df;
    --mystic-purple: #d4cfc7;
    --cosmic-violet: #c4bdb3;
    --ethereal-blue: #b8b1a5;
    --bronze: #8b6f47;
    --gold: #a67c52;
    --warm-gold: #6b5944;
    --soft-white: #2c2621;
    --breathing-glow: rgba(139, 111, 71, 0.08);
}

/* Elegant Body & Background */
body.theme-elegant {
    background: linear-gradient(135deg, #f9f7f4 0%, #ede9e4 100%);
    color: var(--soft-white);
    font-family: 'Crimson Text', serif;
}

/* Elegant Cosmic Background - Subtle gradient */
body.theme-elegant .cosmic-bg {
	/*
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 207, 199, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(232, 228, 223, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184, 177, 165, 0.1) 0%, transparent 70%),
        #f9f7f4;
    */
	animation: elegantBreath 12s ease-in-out infinite;
}

@keyframes elegantBreath {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Hide particles in elegant theme */
body.theme-elegant .particles {
    display: none;
}

/* Elegant Navigation */
body.theme-elegant .nav {
    background: linear-gradient(to bottom, rgba(249, 247, 244, 0.98), rgba(249, 247, 244, 0.85));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
}

body.theme-elegant .logo {
    color: var(--bronze);
    font-weight: 500;
}

body.theme-elegant .nav-link {
    color: var(--warm-gold);
    font-weight: 500;
}

body.theme-elegant .nav-link::after {
    background: var(--bronze);
}

body.theme-elegant .nav-link:hover {
    color: var(--bronze);
}

/* Elegant Hero Section */
body.theme-elegant .hero {
    background: transparent;
}

body.theme-elegant .hero-title {
    background: linear-gradient(135deg, var(--bronze), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    animation: none;
	text-shadow: 1px 2px 10px rgb(109, 116, 114);
}

body.theme-elegant .hero-subtitle {
    color: var(--bronze);
    font-weight: 500;
}

body.theme-elegant .hero-intro {
    color: var(--soft-white);
    opacity: 0.85;
}

/* Elegant Breathing Circle */
body.theme-elegant .breathing-circle {
    border: none;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.04), transparent 70%);
    animation: elegantCircleBreath 8s ease-in-out infinite;
}

@keyframes elegantCircleBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(139, 111, 71, 0.08);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 60px rgba(139, 111, 71, 0.12);
    }
}

body.theme-elegant .breathing-circle::before {
    border: none;
    animation: elegantCircleBreath 8s ease-in-out infinite reverse;
}

body.theme-elegant .breathing-circle::after {
    border: none;
    animation: elegantCircleBreath 8s ease-in-out infinite;
}

body.theme-elegant .dragon-image {
    animation: elegantDragonBreath 10s ease-in-out infinite;
}

body.theme-elegant .dragon-image img {
    mix-blend-mode: multiply;
    opacity: 1;
    filter: brightness(1.05) contrast(1.1) saturate(0.95);
}

@keyframes elegantDragonBreath {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.05) contrast(1.1) saturate(0.95);
    }
    50% {
        transform: scale(1.04);
        filter: brightness(1.08) contrast(1.12) saturate(1);
    }
}

body.theme-elegant .breathing-circle:hover .dragon-image img {
    filter: brightness(1.12) contrast(1.15) saturate(1.05);
}

/* Elegant Section Styles */
body.theme-elegant .section-title {
    color: var(--bronze);
    font-weight: 500;
}

body.theme-elegant .section-content {
    color: var(--soft-white);
    opacity: 0.9;
}

/* Elegant About Section */
body.theme-elegant .about, .soul-journey {
    background: linear-gradient(135deg, rgba(232, 228, 223, 0.4), rgba(212, 207, 199, 0.3));
    border: 1px solid rgba(139, 111, 71, 0.15);
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.08);
}

/* Elegant Journey Section */
body.theme-elegant .journey-image {
    box-shadow: 0 20px 60px rgba(44, 38, 33, 0.15);
}

body.theme-elegant .journey-image::after {
    background: linear-gradient(45deg, rgba(212, 207, 199, 0.3) 0%, transparent 100%);
    opacity: 0.2;
}

body.theme-elegant .journey-image:hover::after {
    opacity: 0.05;
}

/* Elegant Music Section */
body.theme-elegant .music-section {
    background: linear-gradient(135deg, rgba(196, 189, 179, 0.25), rgba(232, 228, 223, 0.3));
    border: 1px solid rgba(139, 111, 71, 0.15);
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.08);
}

body.theme-elegant .music-section::before {
    background: radial-gradient(circle, rgba(139, 111, 71, 0.06), transparent 70%);
    animation: elegantBreath 10s ease-in-out infinite;
}

body.theme-elegant .music-portrait {
    border: 3px solid var(--bronze);
    box-shadow: 0 0 40px rgba(139, 111, 71, 0.15);
}

/* Elegant Gallery Section */
body.theme-elegant .gallery-item {
    box-shadow: 0 10px 30px rgba(44, 38, 33, 0.15);
}

body.theme-elegant .gallery-item:hover {
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
}

body.theme-elegant .gallery-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), transparent);
}

body.theme-elegant .gallery-location {
    color: var(--midnight);
}

/* Elegant Podcast Section */
body.theme-elegant .podcast-section {
    background: linear-gradient(135deg, rgba(232, 228, 223, 0.35), rgba(212, 207, 199, 0.3));
    border: 1px solid rgba(139, 111, 71, 0.15);
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.08);
}

body.theme-elegant .audio-player {
    background: rgba(249, 247, 244, 0.7);
    border: 1px solid var(--bronze);
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
}

body.theme-elegant .audio-player audio {
    filter: sepia(0.3) hue-rotate(10deg);
}

/* Elegant Footer */
body.theme-elegant .footer {
    border-top: 1px solid rgba(139, 111, 71, 0.2);
}

body.theme-elegant .footer-text {
    color: var(--bronze);
    opacity: 0.8;
}

/* Elegant Responsive Adjustments */
@media (max-width: 768px) {
    body.theme-elegant .breathing-circle {
        border-width: 1px;
    }
}

/* Sections max width and center alignment */
.soul-journey,
.about,
.music-section,
.podcast-section,
.testimonials-section {
    width: calc(1308px * 0.66);
    margin-left: auto;
    margin-right: auto;
}

.gallery-section, .testimonials-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section{
	background: linear-gradient(135deg, rgba(232, 228, 223, 0.4), rgba(212, 207, 199, 0.3));
	width: 90%;
	border-radius: 30px;
}

.gallery-section .section-content-readable, .testimonials-section .section-content-readable{
	width: calc(1308px * 0.66);
	margin-left: auto;
    margin-right: auto;
}

.registration-section {
	background: linear-gradient(135deg, rgba(232, 228, 223, 0.9), rgba(212, 207, 199, 0.8));
	max-width: calc(1308px * 0.66);
	margin-left: auto;
	margin-right: auto;
	margin-top: 3rem;
	border-radius: 30px;
	padding: 3rem 0rem;
}

.info-section{
	width:90%;
	max-width: 1400px;
	margin-left: auto;
    margin-right: auto;
}
.info-section{
	background: linear-gradient(135deg, rgba(232, 228, 223, 0.4), rgba(212, 207, 199, 0.3));
	border-radius: 30px;
	padding: 6rem 4rem;
}

/* Readable content sections */
.section-content-readable {
    font-size:22px;
    line-height: 38px;
    color: var(--font-color-primary);
    font-family: 'Cormorant Garamond', serif;
}

.section-content-readable p {
    margin-bottom: 1.5rem;
}

/* Images in content sections */
.section-content-readable img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
	margin-bottom: 1rem;
}

/* Audio player */
.audio-player audio {
    width: 100%;
    max-width: 600px;
}

/* CTA Link - Registration button */
.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
	letter-spacing: 1.2px;
    font-weight: 500;
    color: var(--font-color-primary);
    background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-link::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.6s ease;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--font-color-primary);
}

.cta-link:hover::before {
    left: 100%;
}

.photo cite{
	font-size: 1rem;
}

/* Ensure container has proper padding */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1180px;
}

/* Testimonials card styling */
.testimonials-section .card {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonials-section .card-body {
    padding: 2rem;
}

.testimonials-section blockquote p {
    font-size: 20px;
    line-height: 1.7;
}
.link{
	text-decoration: underline;
}
.lh-1{
	line-height:1;
}

/* Mobile optimizations */
@media (max-width: 768px) {
	.cosmic-bg{
		background-repeat: no-repeat;
		background-size: cover;
		background-position-y: 33%;
	}
	section, .gallery-section .section-content-readable{
		width: 98%!important;
	}
	.section-content-readable {
        font-size: 1rem; /* 16px on mobile */
        line-height: 1.7;
        padding: 0 1rem;
    }
	.registration-section .section-content-readable{
		padding: 0;
	}
    .section-content-readable p {
        margin-bottom: 1.25rem;
		font-size: 20px;
    }

    .section-title {
        font-size: 2rem !important;
    }

    /* Image adjustments for mobile */
    .journey-image img,
    .music-portrait img {
        max-width: 100% !important;
    }
    .nav-hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        background: rgba(10, 14, 39, 0.97);
        backdrop-filter: blur(20px);
        z-index: 9999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    body.theme-elegant .nav-links {
        background: rgba(249, 247, 244, 0.98);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links .nav-link {
        padding: 1rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    .nav-links .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link.cta-reg {
        background: var(--bronze);
        color: white !important;
        border-radius: 2rem;
        padding-left: 20px;
        margin-left: -20px;
    }
    .hero{
        width: 100% !important;
		margin-top: 4rem;
		padding: 0 1rem 1rem;
        position: unset;
    }
	.hero-content{
		padding: 2rem 1rem;
	}
    .hero-title {
        font-size: 2rem;
    }
	.hero-subtitle{
		line-height: 2.8rem;
	}
	.hero-more, .section-content-readable p.hero-more{
		font-size: 24px;
		font-weight: 600;
	}
    .breathing-circle {
        width: 280px;
        height: 280px;
    }

    .breathing-circle::before {
        width: 220px;
        height: 220px;
    }

    .breathing-circle::after {
        width: 160px;
        height: 160px;
    }

    .dragon-image img {
        width: 100%;
        height: 100%;
        mask-image: radial-gradient(circle at center, black 30%, rgba(0,0,0,0.5) 50%, transparent 70%);
        -webkit-mask-image: radial-gradient(circle at center, black 30%, rgba(0,0,0,0.5) 50%, transparent 70%);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .music-portrait {
        width: 250px;
        height: 250px;
    }
    .about, .music-section, .podcast-section {
        padding: 3rem 1rem;
        margin: auto;
    }
	.music-section, .gallery-section{
		margin-top: 4rem;
	}
	.gallery-section{
		padding: 3rem 2rem;
	}
	.info-section{
		padding: 3rem 2rem;
	}
    .audio-player {
        padding: 1rem;
    }
	.about, .soul-journey, .music-section{
		padding: 3rem 0rem;
	}
	.podcast-section cite{
		display:none;
	}
	.testimonials-section .card-body {
        padding: 1.5rem;
    }

    .testimonials-section blockquote p {
        font-size: 0.9rem;
    }
	.cta-link {
        font-size: 1.4rem;
        padding: 0.8rem 2rem;
        position: unset;
    }

    /* Events mobile */
    .events-page-header {
        padding: 3rem 1rem 1rem;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-card-body {
        flex-direction: column;
        gap: 1rem;
    }
    .event-card-date {
        flex-direction: row;
        gap: 0.5rem;
        min-width: auto;
    }
    .event-detail-header,
    .event-detail-content,
    .event-map-section,
    .event-registration-section {
        padding: 2rem 1rem;
    }
    .event-detail-title {
        font-size: 2rem;
    }
    .event-form-row {
        flex-direction: column;
        gap: 0;
    }
    .event-registration-box {
        padding: 2rem 1.5rem;
    }
    .event-cover img {
        max-height: 250px;
    }
}

/* ================================
   Events Pages
   ================================ */

.events-page-header {
    padding: 6rem 2rem 2rem;
}

.events-section {
    padding: 2rem 2rem 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.events-past {
    opacity: 0.7;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Event Card */
.event-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(232, 228, 223, 0.35), rgba(212, 207, 199, 0.8));
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    color: inherit;
}

.event-card-past {
    opacity: 0.65;
}

.event-card-past:hover {
    opacity: 0.85;
}

.event-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    align-items: flex-start;
}

.event-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 12px;
    color: var(--font-color-primary);
    line-height: 1.2;
}

.event-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
}

.event-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-year {
    font-size: 0.8rem;
    opacity: 0.7;
}

.event-card-info {
    flex: 1;
}

.event-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--font-color-primary);
    margin: 0 0 0.5rem 0;
}

.event-card-meta {
    font-size: 1rem;
    color: rgba(36, 16, 4, 0.7);
    margin-bottom: 0.5rem;
}

.event-card-separator {
    margin: 0 0.5rem;
}

.event-card-excerpt {
    font-size: 0.95rem;
    color: rgba(36, 16, 4, 0.6);
    margin: 0;
    line-height: 1.5;
}

.event-card-capacity {
    margin-bottom: 0.5rem;
}

.badge-full,
.badge-limited,
.badge-past {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-full {
    background: rgba(180, 40, 40, 0.15);
    color: #b42828;
}

.badge-limited {
    background: rgba(212, 175, 55, 0.2);
    color: #8b6f1f;
}

.badge-past {
    background: rgba(100, 100, 100, 0.15);
    color: #666;
}

.event-card-cta {
    padding: 0 2rem 1.5rem;
    text-align: right;
}

.event-card-cta .cta-link {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

/* Event Detail Page */
.event-cover {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.event-cover img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.event-detail-header {
    padding: 3rem 2rem 1rem;
}

.event-back-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.event-back-link:hover {
    color: var(--warm-gold);
}

.event-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.event-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--soft-white);
    opacity: 0.9;
}

.event-detail-meta-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.event-detail-content {
    padding: 2rem 2rem 3rem;
}

.event-description {
    color: var(--font-color-primary);
}

.event-description p {
    margin-bottom: 1.5rem;
}

.event-section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
}

.event-map-section {
    padding: 0 2rem 3rem;
}

.event-location-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.event-map {
    border-radius: 15px;
    overflow: hidden;
}

/* Registration Form */
.event-registration-section {
    padding: 2rem 2rem 5rem;
}

.event-registration-box {
    max-width: 650px;
    background: linear-gradient(135deg, rgba(232, 228, 223, 0.9), rgba(212, 207, 199, 0.85));
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 25px;
    padding: 3rem;
}

.event-form-group {
    margin-bottom: 1.5rem;
}

.event-form-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--font-color-primary);
    margin-bottom: 0.4rem;
}

.event-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: var(--font-color-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 111, 71, 0.25);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.event-form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.event-form-input::placeholder {
    color: rgba(36, 16, 4, 0.35);
}

.event-form-row {
    display: flex;
    gap: 1.5rem;
}

.event-form-row .event-form-group {
    flex: 1;
}

.event-form-checkbox {
    margin-top: 0.5rem;
}

.event-form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--font-color-primary);
}

.event-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.event-past-notice,
.event-full-notice {
    padding: 1.5rem;
    border-radius: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.event-past-notice {
    background: rgba(100, 100, 100, 0.1);
    color: var(--font-color-primary);
}

.event-full-notice {
    background: rgba(180, 40, 40, 0.1);
    color: #8b3030;
}

.event-success-notice {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(40, 160, 80, 0.15);
    color: #1a6b35;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.event-error-notice {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    background: rgba(180, 40, 40, 0.1);
    color: #8b3030;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.event-error-notice ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .events-page-header {
        padding: 2rem 0.2rem 2rem;
    }

    .events-section {
        padding: 2rem 0.2rem 4rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .event-detail-header, .event-detail-content, .event-map-section, .event-registration-section{
        padding: 2rem 0.2rem 2rem;
    }
    .event-detail-title{
        font-size: 1.5rem;
    }
    .event-registration-box{
        padding: 2rem 1rem;
    }
}
