/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Poppins', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff1f5;
    font-weight: 400;
    color: #333;
}

/* Header */
header {
    background-color: #d97c9c;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 30px; /* Add space between logo, nav, and button */
}

.lang-button {
    margin-left: auto; /* Pushes the button to the far right */
    padding: 8px 12px;
    border: none;
    background-color: #d97c9c;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
}


.logo {
    height: 60px;
    max-width: 120px;
    margin-right: 30px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight: 500; /* Medium weight for Poppins */
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #ffe4ea;
    transform: scale(1.1);
}

a {
    color: #c74370;
    text-decoration: none; /* Remove default underline */
}

/* Sections */
.section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    border-radius: 15px; /* Softer corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Initial state for fade-in */
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
    color: #c74370;
    font-weight: 700; /* Bold weight for Poppins */
    margin-bottom: 15px;
    text-align: center;
}

p {
    line-height: 1.6;
    color: #444; /* Slightly darker for Roboto, still soft */
    margin-bottom: 15px;
    /* text-align: left; by default */
    font-size: 1.1em; /* Adjusted for balance */
}
.menu-image {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #d97c9c;
    font-weight: bold;
}

section {
    scroll-margin-top: 100px; /* Ensures smooth scroll doesn't get hidden behind sticky header */
}
/* Specific text alignments */
#overview p {
    text-align: justify;
}

#contact p {
    text-align: center;
}

#contact p i {
    margin-right: 8px;
    color: #c74370; /* Match heading color for icons */
    font-size: 1.2em; /* Slightly larger icons */
    vertical-align: middle; /* Better alignment with text */
}


/* Footer */
footer {
    background-color: #d97c9c;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #c74370; /* Subtle top border for separation */
    margin-top: 40px;
}
/* General link hover effect */
a:hover {
    color: #d97c9c; /* Lighter pink on hover */
    text-decoration: underline;
}


/* Responsive Styles */
@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start; /* Align all items to the left */
        gap: 10px;
        padding: 10px 10px;
    }

    .logo {
        margin: 0; /* Remove auto margins */
        display: block;
    }

    nav ul {
        flex-direction: row;
        gap: 10px;
        width: auto;
        margin: 0;
        justify-content: flex-start;
        align-items: center;
    }

    nav li {
        width: auto;
        margin-bottom: 0;
    }

    nav a, .lang-button {
        width: auto;
        text-align: left;
        font-size: 1em;
    }

    .lang-button {
        margin-left: 0;
        margin-top: 0;
        align-self: auto;
        width: auto;
    }
}
