/* styles.css */
:root {
    --palestinian-red: #E4312B;
    --palestinian-white: #FFFFFF;
    --palestinian-green: #149954;
    --palestinian-black: #000000;
    --button-green:  #3fc94f;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--palestinian-red), var(--palestinian-black));
    color: var(--palestinian-white);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    background-color: var(--palestinian-white);
    border-radius: 50%;
    width: 126px;
    height: 126px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 105px;
    height: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--palestinian-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--button-green);
}

main {
    padding-top: 120px;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flag {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.pitch {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background-color: var(--palestinian-green);
    color: var(--palestinian-white);
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--button-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--palestinian-white);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 15px;
    }

    h1 {
        font-size: 2em;
    }
    
    .pitch {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1em;
    }

    main {
        padding-top: 180px;
    }
}


.prompts-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.prompt-response-pair {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.prompt-box, .response-box {
    margin-bottom: 20px;
}

.prompt-box h2, .response-box h2 {
    color: var(--palestinian-white);
    font-size: 1.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.prompt-box {
    border-left: 5px solid var(--palestinian-green);
    padding-left: 15px;
}

.response-box {
    border-left: 5px solid var(--palestinian-red);
    padding-left: 15px;
}

@media (max-width: 768px) {
    .prompt-response-pair {
        padding: 20px;
    }
    
    .prompt-box h2, .response-box h2 {
        font-size: 1.3em;
    }
}
