:root {
    /* Sunrise / Parchment Theme */
    --bg-main: #fdf8e9;
    --bg-secondary: #f4ecce;
    --text-main: #4a3a2a;
    --text-dim: #7a6652;
    --gold: #b37700;
    --gold-glow: rgba(179, 119, 0, 0.4);
    
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'EB Garamond', serif;
    --font-ui: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

h2 {
    color: var(--gold);
}

p {
    font-size: 1.15rem;
    color: var(--text-dim);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(253, 248, 233, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(179, 119, 0, 0.15);
    transition: all 0.3s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-glow);
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary-small {
    background: var(--gold);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(179, 119, 0, 0.3);
}

.btn-primary-small:hover {
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-glow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #c78d2b, #e6b741);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(199, 141, 43, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.btn-glow:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(199, 141, 43, 0.5);
}

.btn-glow:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

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

.btn-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
}

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

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatBlob 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #f9d976;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #e6b741;
    bottom: -150px;
    right: -50px;
    animation-duration: 22s;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #f3a183;
    top: 30%;
    left: 40%;
    animation-duration: 28s;
    animation-delay: -10s;
}

.blob-4 {
    width: 300px;
    height: 300px;
    background: #ffd085;
    bottom: 20%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: -2s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(100px, 150px) scale(1.1) rotate(45deg); }
    66% { transform: translate(-50px, 200px) scale(0.9) rotate(-30deg); }
    100% { transform: translate(-100px, -50px) scale(1.05) rotate(15deg); }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    z-index: 10;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

/* 3D Swiper Slider Styles */
.hero-slider {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.heroSwiper {
    width: 340px;
    height: 480px;
    padding: 30px 10px;
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: transparent;
    transition: transform 0.3s;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(74, 58, 42, 0.35);
    border: 4px solid #fff;
}

.slider-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 141, 43, 0.25) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Glass Card Enhanced */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1.5px solid rgba(255, 255, 255, 1);
    border-left: 1.5px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 3.5rem;
    text-align: left;
    box-shadow: 0 30px 70px rgba(74, 58, 42, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: glassShine 8s infinite;
}

@keyframes glassShine {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-title span {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-dim);
}

/* Sections General */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Animated Gallery */
.gallery {
    background: var(--bg-secondary);
    padding: 8rem 0;
    overflow: hidden;
}

.gallery-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.3rem;
}

.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.scrolling-wrapper::before,
.scrolling-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolling-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.scrolling-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.scrolling-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollTrack 45s linear infinite;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

.gallery-img {
    height: 400px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(74, 58, 42, 0.15);
    object-fit: cover;
    transition: transform 0.4s ease;
    border: 4px solid #fff;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 45px rgba(74, 58, 42, 0.25);
    z-index: 10;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } 
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(179, 119, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(74, 58, 42, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 58, 42, 0.1), 0 0 15px rgba(179, 119, 0, 0.15);
    border-color: rgba(179, 119, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Download CTA */
.download {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-main);
}

.download-card {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(179, 119, 0, 0.2);
    text-align: center;
}

.download-card p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.play-store-btn {
    display: inline-block;
    transition: transform 0.2s;
}

.play-store-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(179, 119, 0, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 35px;
    height: 35px;
    opacity: 0.9;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    color: rgba(122, 102, 82, 0.6);
    font-size: 0.95rem;
    font-family: var(--font-ui);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .glass-card {
        text-align: center;
        padding: 2.5rem;
    }
    
    .hero-slider {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-title span { font-size: 1.8rem; }
    .heroSwiper { width: 280px; height: 380px; }
    .gallery-img { height: 280px; }
    .footer-container { flex-direction: column; gap: 2rem; text-align: center; }
}
