/* Luna Ceramics - Coming Soon Website Styles */

:root {
    --terra-luna: #B8704F;
    --clay-cream: #F5E6D3;
    --deep-earth: #8B4A32;
    --layer-white: #FFFFFF;
    --digital-clay: #A68B7A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clay-cream);
    color: var(--deep-earth);
    overflow-x: hidden;
}

/* Link Styles */
a {
    color: var(--layer-white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terra-luna);
    text-decoration: underline;
}

a:visited {
    color: var(--layer-white);
}

a:focus {
    outline: 2px solid var(--terra-luna);
    outline-offset: 2px;
}

.section {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--terra-luna) 0%, var(--deep-earth) 100%);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/web_back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--layer-white);
    padding: 0 2rem;
    max-width: 800px;
}

.logo {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.cta-button.primary {
    background: var(--layer-white);
    color: var(--deep-earth);
}

.cta-button.primary:hover {
    background: var(--clay-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: var(--terra-luna);
    color: var(--layer-white);
}

.cta-button.secondary:hover {
    background: var(--deep-earth);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--layer-white);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--layer-white);
    border-bottom: 2px solid var(--layer-white);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Brand Story Section */
#brand-story {
    background: var(--clay-cream);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ceramic-layers {
    background-image: url('images/plates.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.7;
    transform: none !important;
}

.content-overlay {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 800px;
}

.story-content {
    background: rgba(245, 230, 211, 0.95);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.story-text {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

/* Value Proposition Section */
#value-prop {
    background: var(--layer-white);
}

.ceramics-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.ceramics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.value-overlay {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.value-overlay .ceramics-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.value-overlay .ceramics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 450px;
    flex: 1;
    margin-left: 50%;
    padding-left: 2rem;
}

.value-point {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.value-point.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.impossible-shapes {
    background: var(--terra-luna);
}

.impossible-shapes::before {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('images/3dprint.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%);
}

.menu-integration {
    background: var(--deep-earth);
}

.menu-integration::before {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('images/oyster.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%);
}

.rapid-delivery {
    background: var(--digital-clay);
}

.rapid-delivery::before {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('images/delivery.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%);
}

.value-point h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-earth);
}

.value-point p {
    font-size: 1rem;
    color: var(--digital-clay);
    line-height: 1.5;
}

/* Final CTA Section */
#final-cta {
    background: var(--deep-earth);
}

.restaurant-setting {
    background: linear-gradient(135deg, var(--terra-luna), var(--digital-clay));
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 3px, transparent 3px);
    background-size: 80px 80px;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--layer-white);
    padding: 0 2rem;
    max-width: 600px;
}

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.cta-headline.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-text {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.2s;
}

.cta-text.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--deep-earth);
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: var(--layer-white);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-right: 1rem;

}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.social-links {
    display: none;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--terra-luna);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
}

.social-link:hover {
    background: var(--layer-white);
    transform: translateY(-3px);
}

.social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(16%) saturate(1847%) hue-rotate(345deg) brightness(89%) contrast(87%);
}

.footer-info {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix mobile viewport issues */
    html {
        scroll-snap-type: y proximity;
    }
    
    .section {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 2rem 0;
        scroll-snap-align: start;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    #value-prop {
        padding: 2rem 0;
    }
    
    .value-overlay {
        flex-direction: column;
        padding: 2rem;
    }
    
    .value-overlay .ceramics-image {
        position: relative;
        width: 100%;
        height: 60vh;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    
    .value-overlay .ceramics-image img {
        object-fit: cover;
        height: 100%;
    }
    
    .value-points {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-left: 0;
        padding-left: 0;
    }
    
    .value-point {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Enhanced mobile viewport fixes */
    .section {
        padding: 1.5rem 0;
    }
    
    .hero-overlay {
        padding: 0 1rem;
    }
    
    .content-overlay {
        padding: 0 1rem;
    }
    
    .cta-overlay {
        padding: 0 1rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}