/* Saanse - Spiritual Website Styles */

/* Custom Font */
@font-face {
    font-family: 'Maiken';
    src: url('fonts/Maiken.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --background: hsl(30, 85%, 87%);
    --foreground: hsl(26, 15%, 25%);
    --burgundy: #b10746;
    --beige: #fadec1;
    --font-serif: 'Maiken', serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.text-burgundy {
    color: var(--burgundy);
}

.font-semibold {
    font-weight: 600;
}

/* Floating Navigation */
#floating-nav {
    position: fixed;
    z-index: 100;
}

.floating-button {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--burgundy);
    color: var(--beige);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
}

.floating-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#menu-button {
    top: 24px;
    right: 24px;
}

.scroll-top {
    bottom: 24px;
    right: 24px;
}

.floating-button:hover {
    transform: scale(1.05);
}

.icon {
    color: var(--beige);
}

.hidden {
    display: none;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.menu-content {
    position: fixed;
    top: 80px;
    right: 24px;
    background-color: var(--beige);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--burgundy);
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: left;
    width: 100%;
}

.menu-link:hover {
    transform: translateX(8px);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 100vh;
    }
}

.hero-banner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.hero-section:hover .hero-banner {
    transform: scale(1.05);
}

.hero-banner-mobile {
    background-image: url('assets/Mobile-Banner_1760535747945.jpg');
}

.hero-banner-desktop {
    background-image: url('assets/Desktop-banner-01_1760536592153.jpg');
    display: none;
}

@media (min-width: 768px) {
    .hero-banner-mobile {
        display: none;
    }
    .hero-banner-desktop {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.05));
    transition: opacity 0.3s ease;
}

.hero-section:hover .hero-overlay {
    opacity: 0.9;
}

.hero-button-area {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 192px;
    height: 56px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.hero-button-area:hover {
    transform: translateX(-50%) scale(1.1);
}

.hero-divider {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: none;
}

.divider-line-left,
.divider-line-right {
    width: 64px;
    height: 2px;
    border-radius: 9999px;
}

.divider-line-left {
    background: linear-gradient(to right, transparent, rgba(177, 7, 70, 0.4), rgba(177, 7, 70, 0.2));
}

.divider-line-right {
    background: linear-gradient(to left, transparent, rgba(177, 7, 70, 0.4), rgba(177, 7, 70, 0.2));
}

.divider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(177, 7, 70, 0.4);
    box-shadow: 0 0 20px rgba(177, 7, 70, 0.5);
}

/* About Section */
.about-section {
    position: relative;
    padding: 48px 20px;
    min-height: 80vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-section {
        padding: 80px 5%;
    }
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
}

.ambient-orb-right {
    top: 25%;
    right: 0;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, hsl(38, 88%, 85%), transparent 70%);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 32px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        gap: 64px;
    }
}

.about-heading {
    font-family: var(--font-serif);
    line-height: 1.4;
}

.about-heading-mobile {
    font-size: 1.25rem;
    text-align: left;
    width: 100%;
    padding: 0 16px;
}

.about-heading-desktop {
    display: none;
    font-size: 2.2rem;
}

@media (min-width: 768px) {
    .about-heading-mobile {
        display: none;
    }
    .about-heading-desktop {
        display: block;
    }
}

.about-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-image-container {
        width: auto;
    }
}

.capsule-image {
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 500px;
    border-radius: 200px;
}

@media (min-width: 768px) {
    .capsule-image {
        width: 384px;
        height: 600px;
    }
}

.capsule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-container:hover .capsule-image img {
    transform: scale(1.05);
}

.image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .about-content {
        padding: 0;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(64, 38, 34, 0.9);
}

@media (min-width: 768px) {
    .about-text p {
        font-size: 1.125rem;
    }
}

/* Presence Section */
.presence-section {
    position: relative;
    padding: 48px 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .presence-section {
        padding: 80px 5%;
    }
}

.ambient-orb-top-left {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: radial-gradient(circle, hsl(38, 88%, 85%), transparent 70%);
}

.ambient-orb-bottom-right {
    bottom: 160px;
    right: 80px;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, hsl(32, 75%, 80%), transparent 70%);
}

.presence-header {
    position: relative;
    z-index: 10;
    margin-bottom: 48px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .presence-header {
        margin-bottom: 80px;
    }
}

.presence-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .presence-title {
        font-size: 3rem;
    }
}

.decorative-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.deco-line-left,
.deco-line-right {
    width: 64px;
    height: 1px;
}

.deco-line-left {
    background: linear-gradient(to right, transparent, rgba(177, 7, 70, 0.4));
}

.deco-line-right {
    background: linear-gradient(to left, transparent, rgba(177, 7, 70, 0.4));
}

.deco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(177, 7, 70, 0.5);
}

.presence-description {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(64, 38, 34, 0.8);
}

@media (min-width: 768px) {
    .presence-description {
        font-size: 1.25rem;
    }
}

.presence-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1400px;
    width: 100%;
    padding-bottom: 48px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .presence-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .presence-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1533px) {
    .presence-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}
.presence-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presence-card {
    position: relative;
    width: 256px;
    height: 384px;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .presence-card {
        width: 288px;
        height: 448px;
        padding: 48px 32px;
    }
}

.presence-card:hover {
    transform: scale(1.05);
}

.card-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    overflow: hidden;
}

.card-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: transform 1s ease;
}

.presence-card:hover .card-shimmer::after {
    transform: translateX(100%);
}

.card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.5rem;
    }
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
    .card-description {
        font-size: 1.125rem;
    }
}

.card-button {
    margin-top: 16px;
    padding: 8px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background-color: var(--burgundy);
    color: var(--beige);
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (min-width: 768px) {
    .card-button {
        margin-top: 24px;
        padding: 8px 32px;
        font-size: 0.875rem;
    }
}

.card-button:hover {
    transform: scale(1.05);
}

.presence-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.divider-line-gradient-left,
.divider-line-gradient-right {
    width: 96px;
    height: 2px;
    border-radius: 9999px;
}

.divider-line-gradient-left {
    background: linear-gradient(to right, transparent, rgba(177, 7, 70, 0.6), rgba(177, 7, 70, 0.4));
}

.divider-line-gradient-right {
    background: linear-gradient(to left, transparent, rgba(177, 7, 70, 0.6), rgba(177, 7, 70, 0.4));
}

.divider-dot-pulse {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(177, 7, 70, 0.6);
    box-shadow: 0 0 20px rgba(177, 7, 70, 0.5);
}

.dot-pulse-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(177, 7, 70, 0.3);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Collaborate Section */
.collaborate-section {
    position: relative;
    padding: 48px 5%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
    background: radial-gradient(ellipse, hsl(38, 88%, 85%), transparent 70%);
}

.collaborate-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    padding: 0 16px;
}

.collaborate-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .collaborate-text {
        font-size: 2.2rem;
    }
}

@media (min-width: 1024px) {
    .collaborate-text {
        font-size: 2.5rem;
    }
}

.collaborate-cta {
    display: inline-block;
}

.contact-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 9999px;
    background-color: var(--burgundy);
    color: var(--beige);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(177, 7, 70, 0.3);
    transition: transform 0.5s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-button {
        gap: 12px;
        font-size: 1.5rem;
        padding: 16px 32px;
    }
}

.contact-button:hover {
    transform: scale(1.05);
}

.button-text-white {
    color: white;
}

.button-text-beige {
    margin-left: 8px;
    font-weight: 600;
    color: var(--beige);
}

.button-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    overflow: hidden;
}

.button-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: transform 1s ease;
}

.contact-button:hover .button-shimmer::after {
    transform: translateX(100%);
}

/* Footer */
.footer {
    position: relative;
    padding: 64px 5% 32px;
    text-align: center;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(64, 38, 34, 0.7);
    margin-bottom: 12px;
}

.footer-initiative {
    font-size: 0.75rem;
    background: linear-gradient(to right, var(--burgundy), rgba(177, 7, 70, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.scroll-reveal {
    opacity: 0;
    transition: all 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    animation: fadeInUp 1s ease-out forwards;
}
