@import url('./styles/hero-section.css');
@import url('./styles/about-section.css');
@import url('./styles/services-section.css');
@import url('./styles/showcase-section.css');
@import url('./styles/faq-section.css');
@import url('./styles/testimonials-section.css');
@import url('./styles/footer.css');

:root {
    --penn-blue: #0A1047;
    --marian-blue: #303880;
    --linen: #F6E9E0;
    --sandy-brown: #FFA364;
    --pumpkin: #FD7118;
    
    --background-color: #FDFBFA;
    --text-color: #333;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* --- Header & Navigation --- */
.header {
    padding: 12px 0;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-weight: 700;
    color: var(--penn-blue);
    text-decoration: none;
}

.logo-written {
font-weight: bold;
    text-transform: uppercase;
    font-family: inherit;
    color: #e98337;
    font-size: 1.55em;
}

.logo img {
    height: 70px !important;
}

.navigation {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--marian-blue);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--sandy-brown);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--penn-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--sandy-brown);
    color: var(--penn-blue);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--penn-blue);
    border-radius: 5px;
    transition: all 0.3s linear;
}

@media (max-width: 900px) {
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        padding-top: 100px;
        padding-left: 15px;

    }
    
    .navigation.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 10px 0;
    }
    
}