@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #FF4081;
    --primary-gradient: linear-gradient(135deg, #FF4081 0%, #FF7E5F 100%);
    --bg-color: #0d0d12;
    --surface-color: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

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

/* Header & Glassmorphism Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(13, 13, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    user-select: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

main {
    padding-top: 100px; /* Offset for fixed header */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
    position: relative;
}

/* Ambient glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.15) 0%, rgba(13, 13, 18, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
    transition: var(--transition);
    animation: fadeInUp 1.4s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.5);
    color: white;
}

/* Video/Mockup Section */
.mockup-container {
    margin-top: 5rem;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    padding: 8px;
    background: var(--surface-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: fadeInUp 1.6s ease-out;
}

.mockup-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: var(--surface-color);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    overflow: hidden;
    position: relative;
}

/* Photo Gallery Section */
.gallery {
    padding: 6rem 1rem;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.gallery-item {
    background: var(--surface-color);
    border-radius: 24px;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 64, 129, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 4rem 1rem 6rem;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.feature-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-top: 0;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Content Pages (Privacy, Terms) */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-box {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.content-box h1, .content-box h2, .content-box h3 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-box h1 { font-size: 2.2rem; }
.content-box h2 { font-size: 1.8rem; }
.content-box h3 { font-size: 1.4rem; }

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.content-box a {
    color: var(--primary-color);
    text-decoration: underline;
}

.content-box a:hover {
    color: #FF7E5F;
}

.content-box strong {
    color: var(--text-primary);
}

.last-updated-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: rgba(0,0,0,0.2);
}

footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

footer ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: var(--primary-color);
}

/* Loading Spinner for Dynamic Text */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--surface-color);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 2rem auto;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        flex-wrap: wrap;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(13, 13, 18, 0.98);
        padding: 1rem 0;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

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