/* HEADER */
header {
    width: 100%;
    height: 6rem;
    position: sticky;
    background-color: white;

    display: flex;
    align-items: center;
    z-index: 99999;
}

/* LANG SELECTOR */
.language-selector {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1001 !important;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

header img {
    height: 180%;
}

header > * {
    height: 100%;
}
header nav {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin-left: auto;
}
header nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;

    gap: 4rem;
    font-size: 1.75rem;
}
header nav ul a {
    text-decoration: none;
    color: var(--color-primary);
}
/* HEADER */

section h1 {
    font-size: 6rem;
    text-align: start;
}



/* SECTION 1 */
section#s1 {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}
section#s1 > * {
    flex: 1;
}
section#s1 img {
    width: 100%;
}

section#s1 .intro {
    height: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.5rem;
}
section#s1 .intro p {
    font-size: 2rem;
    opacity: .5;
    text-align: start;
}

section#s1 .intro > div {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
/* SECTION 1 */





/* SECTION 2 */
section#s2 {
    /* height: auto; */
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

section#s2 h1 {
    text-align: center;
}


section#s2 > div {
    display: flex;
    gap: 2rem;
}

section#s2 > div img {
    width: 80%;
}

section#s2 > div h2 {
    text-align: center;
    font-size: 2rem;
}
section#s2 > div p {
    text-align: center;
    opacity: .5;
    font-size: 1.1rem;
}

section#s2 > div div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/* SECTION 2 */


/* SECTION 3 */
section#s3 {
    display: flex;
    gap: 1.5rem;
}

section#s3 > * {
    flex: 2.5;
}

section#s3 img {
    width: 100%;
}

section#s3 .form {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 2rem;

    margin-bottom: 2rem;
}

section#s3 .form p {
    font-size: 2rem;
    opacity: .5;
}
section#s3 .form .submit-p {
    opacity: 1;
}

section#s3 .form form {
    display: flex;
    gap: .5rem;
}

section#s3 .form form input {
    flex: 3;
    padding: 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    font-size: 1.2rem;
    font-family: "Gilroy";
}
section#s3 .form form button {
    flex: 1;
    border-radius: 12px;
    background-color: #1B1F26B8;
    color: white;
    border: none;
}

/* SECTION 3 */



/* FOOTER */
footer {
    background: linear-gradient(135deg, #4B2E1E 0%, #3a2318 100%) !important;
    color: white !important; /* FIXED: white text on dark background */
    padding: 3rem 6rem !important;
    margin-top: 4rem !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-brand {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.footer-brand h1 {
    font-size: 2.5rem !important;
    margin: 0 !important;
    color: var(--color-accent) !important; /* orange brand color */
}

.footer-brand p {
    font-size: 1rem !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    color: white !important; /* FIXED: explicitly white */
}

.footer-section h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    color: var(--color-accent) !important; /* orange section headers */
    font-weight: bold !important;
}

.footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
}

.footer-section a {
    color: white !important; /* FIXED: explicitly white links */
    text-decoration: none !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
}

.footer-section a:hover {
    opacity: 1 !important;
    color: var(--color-accent) !important; /* orange on hover */
    transform: translateX(5px) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-top: 2rem !important;
    margin-top: 2rem !important;
    text-align: center !important;
    opacity: 0.7 !important;
    font-size: 0.9rem !important;
    color: white !important; /* FIXED: explicitly white */
}

/* FOOTER */



section#s2 > div {
    align-items: flex-start;
}

section#s2 > div div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section#s2 > div h2 {
    height: 4.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

section#s2 > div p {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.4;
}

section#s2 > div img {
    width: 80%;
    height: 250px; /* fixed height */
    object-fit: contain; /* maintain aspect ratio */
    align-self: center;
}