/* --- Global Settings & Variables --- */
:root {
    --brand-pink: #FF00CC;
    --brand-orange: #FF7F32;
    --brand-red: #D7413D;
    
    --font-primary: 'Open Sans', sans-serif;
    --color-text: #333;
    --color-bg: #fdfdfd;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header & Footer --- */
.site-header {
    padding: 1.5rem 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Placeholder logo style */
.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.site-footer {
    padding: 2rem 0;
    background-color: #222;
    color: #aaa;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes footer to the bottom */
}

/* --- Main Content --- */
.site-main {
    flex-grow: 1; /* Ensures main content fills available space */
    padding: 2rem 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* --- Hero Marketing Text --- */
.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero-text h1 {
    color: var(--brand-pink);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
}

/* --- Phone Mockup 📱 --- */
.form-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    /* Base size for the phone */
    width: 300px;
    max-width: 90%;
    aspect-ratio: 9 / 19.5; /* iPhone-like aspect ratio */
    
    /* Frame style */
    padding: 12px;
    background: #111;
    border-radius: 44px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 
                0 0 0 3px #333 inset; /* Inset for screen gap */
    
    display: flex; /* To center the bezel */
    align-items: center;
    justify-content: center;
}

.phone-bezel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px; /* Inner screen radius */
    overflow: hidden; /* This clips the iframe */
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 25px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker {
    width: 30%;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff; /* Fallback bg for iframe */
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Responsive (Desktop) --- */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row; /* Side-by-side on desktop */
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }

    .hero-text {
        flex: 1; /* Take up half the space */
        text-align: left;
    }

    .form-container {
        flex: 1; /* Take up the other half */
        justify-content: flex-end; /* Align phone to the right */
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .phone-mockup {
        width: 360px; /* Give it a more fixed size on desktop */
        margin-right: 2rem;
    }
}

/* Apply this class to your <ul> element
  <ul class="horizontal-list"> 
*/
.horizontal-list {
    /* 1. Remove default list styles */
    list-style-type: none;
    padding: 0;
    margin: 0;
    
    /* 2. Use Flexbox for horizontal layout */
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    
    /* 3. Center the items */
    justify-content: center;
    align-items: center;
    
    /* 4. Add spacing between items */
    gap: 2rem; /* Adjust as needed */
    
    /* 5. Apply brand font */
    font-family: 'Open Sans', sans-serif;
    font-weight: 100; /* Bold text */
    font-size: 1rem;
    color: #333; /* Dark text color */
}

/* Style for the list items themselves */
.horizontal-list li {
    /* You can add padding here if you want more clickable area */
    padding: 0.5rem;
}

/* Optional: Style if your list items are links */
.horizontal-list li a {
    text-decoration: none;
    color: inherit; /* Inherit the #333 color from the <ul> */
    transition: color 0.3s ease;
}

.horizontal-list li a:hover {
    color: #FF00CC; /* Brand pink on hover */
}
