/* ============================= */
/* Europa Advisory Website CSS   */
/* Updated: 2026                 */
/* Color Scheme: (PLACEHOLDER)   */
/* - Primary Blue: #0099BA       */
/* - Dark Navy: #005A6F          */
/* - Light Teal: #39C2DF         */
/* - Accent: #007791             */
/* TODO: Update colors to Europa palette */
/* ============================= */

/* ============================= */
/* 1. Global Styles & Reset      */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #005A6F;
    background-color: #f5f5f5;
    font-size: 18px;
    padding: 0 20px;
}

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

:root {
  --header-offset: 120px;
}


/* ============================= */
/* 2. Header & Navigation        */
/* ============================= */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0099BA;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #005A6F;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0099BA;
}

/* ============================= */
/* 3. Hero Section               */
/* ============================= */
.hero {
    background: linear-gradient(135deg, #f9f9f9 0%, #e6f7ff 100%);
    padding: 120px 0 80px;
    margin-top: 120px;
}

.hero > .container > h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #005A6F;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #005A6F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #005A6F;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-primary {
    background: #0099BA;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    background: #007791;
    transform: translateY(-2px);
}

/* ============================= */
/* 4. Services Section           */
/* ============================= */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #005A6F;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #005A6F;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-category {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #39C2DF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-category h3 {
    font-size: 1.5rem;
    color: #005A6F;
    margin-bottom: 1rem;
}

/* ============================= */
/* 5. Value Proposition Section  */
/* ============================= */
.value-prop {
    padding: 80px 0;
    background: #005A6F;
    color: white;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.value-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.value-points {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.value-points li {
    padding: 0.8rem 0;
    padding-left: 3.5rem;
    position: relative;
    opacity: 0.9;
    list-style: none;
}

.value-points li::before {
    content: "\2713";
    position: absolute;
    left: -1.25rem;
    color: #39C2DF;
    font-weight: bold;
}

/* ============================= */
/* 6. Footer                     */
/* ============================= */
footer {
    background: #005A6F !important;
    color: white !important;
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #39C2DF !important;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    color: white !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white !important;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: #39C2DF !important;
}

.footer-bottom {
    border-top: 1px solid #007791;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* ============================= */
/* 7. Universal Page Spacing     */
/* ============================= */
body main {
    min-height: 100vh;
}

.page-content {
  padding-top: 140px !important;
}

body main .hero {
    padding-top: 120px !important;
}

main > section.page-content,
main > .page-content {
    padding-top: 140px !important;
    scroll-margin-top: 160px;
}

:target {
  scroll-margin-top: var(--header-offset);
}

/* ============================= */
/* 8. Content Page Typography    */
/* ============================= */

.page-content {
    background: #fafafa;
    min-height: calc(100vh - 200px);
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-article h1 {
    font-size: 2.5rem;
    color: #005A6F;
    margin-bottom: 2rem;
    border-bottom: 3px solid #39C2DF;
    padding-bottom: 1rem;
}

.content-article h2 {
    font-size: 1.8rem;
    color: #005A6F;
    margin: 2.5rem 0 1.5rem 0;
}

.content-article h3 {
    font-size: 1.4rem;
    color: #007791;
    margin: 2rem 0 1rem 0;
}

.content-article p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #005A6F;
}

.content-article ul,
.content-article ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
    list-style-position: outside;
}

.content-article li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 0;
}

.content-article a {
    color: #0099BA;
    text-decoration: underline;
    text-decoration-color: rgba(0, 153, 186, 0.3);
    transition: all 0.3s;
}

.content-article a:hover {
    color: #007791;
    text-decoration-color: #007791;
}

.content-article blockquote {
    background: #e6f7ff;
    border-left: 4px solid #0099BA;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.content-article blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: #005A6F;
}

.content-article hr {
    border: none;
    border-top: 1px solid #39C2DF;
    margin: 3rem auto;
    width: 80%;
    opacity: 0.7;
}

/* ============================= */
/* 9. Contact Page Styles        */
/* ============================= */
.contact-hero {
    background: linear-gradient(135deg, #f9f9f9 0%, #e6f7ff 100%);
    padding: 120px 0 60px;
    margin-top: 70px;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #005A6F;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #005A6F;
    opacity: 0.8;
}

.contact-content {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: #005A6F;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d0e8ff;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #007791;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #0099BA;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #007791;
    text-decoration: underline;
}

.contact-form h2 {
    font-size: 2rem;
    color: #005A6F;
    margin-bottom: 1rem;
}

.form-intro {
    color: #005A6F;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.consultation-form {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #d0e8ff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #005A6F;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #39C2DF;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
    color: #005A6F;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0099BA;
    box-shadow: 0 0 0 3px rgba(0, 153, 186, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.consultation-form .cta-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================= */
/* 10. Responsive Design         */
/* ============================= */
@media (max-width: 768px) {
    .hero-content,
    .value-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .nav-links {
        display: none;
    }

    body {
        padding: 0 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .consultation-form {
        padding: 1.5rem;
    }

    .footer-content {
        padding: 0 20px;
    }
}
