:root {
    --bg-color: #131313;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.0);
    /* Removed borders */
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container.narrow {
    max-width: 800px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: transparent;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* Center the logo as requested for simple nav */
    align-items: center;
    padding: 0 40px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-family: 'Moon Get!', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Showcase Section (Prop Pack) */
.showcase-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to ensure text readability without hiding image */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.showcase-content {
    max-width: 800px;
    z-index: 1;
    padding: 20px;
}

.showcase-content h2 {
    font-family: 'Moon Get!', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.showcase-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-badge {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Sections */
.section {
    padding: 160px 0;
}

h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

/* Saltshop / Story Card */
/* Saltshop */
.saltshop {
    background-color: #131313;
    text-align: center;
}

.saltshop h2 {
    margin-bottom: 30px;
}

.saltshop p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.story-card p {
    margin-bottom: 32px;
    font-size: 1.2rem;
    color: var(--secondary-text);
    line-height: 1.8;
    text-align: justify;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: none;
    background: transparent;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
}

footer p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {

    h2,
    .showcase-content h2 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .story-card {
        padding: 40px;
    }
}

@media (max-width: 640px) {

    h2,
    .showcase-content h2 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .container {
        padding: 0 24px;
    }
}