/* WindPrana - Legal Notice Stylesheet */
/* Using the same color palette and styling as the main site */
/* Palette: Turquoise (#45B7A4), Amethyst Purple (#8A65C9), Sun Yellow (#FFB84D), White (#FFFFFF) */

/* -------------------- RESET & BASE STYLES -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #45B7A4;
    transition: all 0.3s ease;
}

a:hover {
    color: #8A65C9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #45B7A4;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    color: #8A65C9;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    color: #45B7A4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* -------------------- HEADER -------------------- */
header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #45B7A4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a:hover {
    color: #8A65C9;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover {
    color: #8A65C9;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8A65C9;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-mobile span {
    width: 30px;
    height: 3px;
    background-color: #45B7A4;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* -------------------- MAIN CONTENT -------------------- */
main {
    margin-top: 6rem;
    padding: 2rem 0;
}

.legal-content {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(69, 183, 164, 0.2);
}

.section:last-child {
    border-bottom: none;
}

.highlight {
    background-color: rgba(69, 183, 164, 0.1);
    padding: 1rem;
    border-left: 4px solid #45B7A4;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

/* -------------------- CONTACT INFO STYLING -------------------- */
.contact-info {
    background-color: rgba(138, 101, 201, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.contact-info strong {
    color: #8A65C9;
}

/* -------------------- FOOTER -------------------- */
footer {
    background-color: #333;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo a {
    color: #FFFFFF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.footer-nav ul li {
    margin: 0 1rem 0.5rem 1rem;
}

.footer-nav ul li a {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-nav ul li a:hover {
    opacity: 1;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-copyright a {
    color: #FFFFFF;
}

/* -------------------- RESPONSIVE STYLES -------------------- */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo img {
        height: 40px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: #FFFFFF;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .menu-mobile {
        display: flex;
        z-index: 1001;
    }
    
    .menu-mobile.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-mobile.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .legal-content {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 35px;
    }

    .legal-content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }
}