/* CSS styles for INSPIRA Coming Soon Page */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}

.nav-link:hover {
    border-bottom: 1px solid var(--color-black);
}

.logo {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--color-black);
    text-align: center;
    text-transform: uppercase;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.icons a:hover {
    color: rgba(0,0,0,0.6);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 0; 
    background-color: var(--color-black);
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

/* Gradient overlay to ensure text is readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 500px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.desc {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--color-white);
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Footer Section */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        position: static;
        background-color: var(--color-white);
    }
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
        gap: 1rem;
    }
    .nav-center {
        order: -1;
        margin-bottom: 1rem;
    }
    .icons {
        margin-left: 0;
    }
    .logo {
        font-size: 2rem;
    }
    .hero {
        height: 80vh;
        padding-left: 5%;
        padding-right: 5%;
        align-items: flex-end;
        padding-bottom: 10%;
        background-position: center center;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero::before {
        background: rgba(0,0,0,0.6);
    }
    .title {
        font-size: 3rem;
    }
    .desc {
        max-width: 100%;
    }
}
