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

:root {
            --primary-dark: #1a0f0a;
            --secondary-dark: #2b1d17;
            --accent-warm: #d4a574;
            --accent-gold: #f4d03f;
            --text-light: #f8f5f2;
            --text-mid: #f7e4ba;
            --text-muted: #b8a695;
            --coffee-brown: #6f4e37;
            --cream: #faf6f0;
            --compleation-green: #4caf50;
            --gradient-roadmap: linear-gradient(180deg, #77d474 25%,#d4a574 35%,  #f4d03f 100%);
            --gradient-warm: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
            --gradient-dark: linear-gradient(135deg, #1a0f0a 0%, #2b1d17 100%);
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(26, 15, 10, 0.98);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}
.logo img {
    width: 6rem;
    height: auto;
    vertical-align: middle;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: 
        linear-gradient(rgba(26, 15, 10, 0.7), rgba(43, 29, 23, 0.7)),
        url('Images/welcome_bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: white;
}

.floating-coffee {
    position: absolute;
    z-index: 3;
}

.hero-logo {
    width: 28rem;
    height: auto;
    max-width: 90%;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-warm);
}

.btn-secondary:hover {
    background: var(--accent-warm);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Floating Elements */
.floating-coffee {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

/* Sections */
.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

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

.feature-card {
    background: rgba(43, 29, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

/* Roadmap */
.roadmap {
    background: rgba(26, 15, 10, 0.5);
    margin: 5rem 0;
    padding: 5rem 2rem;
    border-radius: 20px;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-roadmap);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(43, 29, 23, 0.8);
    border-radius: 15px;
    width: 45%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.roadmap-item:nth-child(odd) {
    left: 0;
}

.roadmap-item:nth-child(even) {
    left: 55%;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.roadmap-item:nth-child(odd)::before {
    right: -35px;
}

.roadmap-item:nth-child(even)::before {
    left: -35px;
}

.roadmap-completed {
    background: rgba(43, 29, 23, 0.8);
    border: 2px solid rgba(98, 216, 102, 0.2);
}

.roadmap-completed::before {
    background: var(--compleation-green);
}

.roadmap-date {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roadmap-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-warm);
}
.roadmap-title-completed {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--compleation-green);
}
.roadmap-title-upcoming {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--secondary-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.3s;
}

/* Trailer */
.trailer-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.trailer-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(43, 29, 23, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-gold);
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(43, 29, 23, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    overflow: hidden;
}

.social-link img {
    display: block;
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
    transition: filter 0.3s ease;
}


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

.social-link:hover img {
    filter: brightness(0.1);
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-logo {
        width: 22rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        width: calc(100% - 60px);
        left: 40px !important;
    }

    .roadmap-item::before {
        left: -35px !important;
    }

    .section {
        padding: 3rem 1rem;
    }
}