/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
}

.container {
    background-color: #f4f4f2;
    min-height: 100vh;
}

/* Navigation */
.nav {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

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

.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #013944;
    font-size: 0.875rem;
}

.brand-highlight {
    color: #a24c29;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #013944;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #f3f4f6;
}

.nav-cta {
    background-color: #013944;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: #024554;
}

.menu-toggle {
    display: block;
    padding: 0.5rem;
    color: #013944;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #013944;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.nav-link-mobile:hover {
    background-color: #f3f4f6;
}

.nav-cta-mobile {
    background-color: #013944;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.nav-cta-mobile:hover {
    background-color: #024554;
}

/* Hero Section */
.hero {
    padding-top: 7rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #013944;
    font-size: 2.25rem;
    line-height: 1.25;
}

.hero-highlight {
    color: #f7ab8d;
}

.hero-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: #013944;
    font-size: 1.125rem;
    line-height: 1.5;
    max-width: 48rem;
}

.hidden-sm {
    display: none;
}

.hero-cta {
    background-color: #aacec5;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #013944;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-cta:hover {
    background-color: #9abdb4;
}

/* Cesta Lektora Section */
.section-cesta {
    padding: 3rem 1rem;
}

.section-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.cesta-box {
    background-color: #013944;
    border-radius: 2rem;
    padding: 1.5rem;
}

.cesta-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cesta-image {
    width: 100%;
}

.cesta-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

.cesta-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.cesta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 2.5rem;
}

.cesta-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: white;
    font-size: 1rem;
    line-height: 2.0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cesta-text p {
    margin: 0;
}

/* Sthiram Section */
.section-sthiram {
    background-color: white;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    padding: 3rem 1rem;
}

.sthiram-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sthiram-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sthiram-text-content {
    color: #013944;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sthiram-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
}

.sthiram-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2.0;
}

.text-highlight {
    color: #a24c29;
}

.sthiram-image-small {
    width: 100%;
}

.sthiram-image-small img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

.sthiram-right {
    width: 100%;
}

.sthiram-right img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #013944;
    padding: 3rem 1rem;
}

.footer-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #aacec5;
    font-size: 3rem;
}

.footer-info {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 1.125rem;
    line-height: 2.0;
}

.footer-info p {
    margin: 0;
}

.footer-link {
    color: #f7ab8d;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
}

/* Tablet Styles (640px+) */
@media (min-width: 640px) {
    .nav-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .brand {
        font-size: 1rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .hidden-sm {
        display: inline;
    }

    .section-cesta {
        padding: 4rem 1.5rem;
    }

    .cesta-box {
        padding: 2rem;
    }

    .cesta-content {
        gap: 2rem;
    }

    .cesta-title {
        font-size: 2.25rem;
    }

    .section-sthiram {
        padding: 4rem 1.5rem;
    }

    .sthiram-grid {
        gap: 3rem;
    }

    .sthiram-text-content {
        gap: 3rem;
    }

    .sthiram-title {
        font-size: 2.25rem;
    }

    .footer {
        padding: 4rem 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-title {
        font-size: 2.25rem;
    }

    .footer-info {
        font-size: 1.25rem;
    }
}

/* Desktop Styles (768px+) */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding-top: 10rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-text {
        font-size: 1.5rem;
    }

    .section-cesta {
        padding: 6rem 3rem;
    }

    .cesta-box {
        padding: 3rem;
    }

    .section-sthiram {
        padding: 6rem 3rem;
    }

    .footer {
        padding: 6rem 3rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .nav-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .cesta-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .cesta-image {
        width: 45%;
        flex-shrink: 0;
    }

    .cesta-content {
        width: 55%;
    }

    .sthiram-grid {
        flex-direction: row;
    }

    .sthiram-left {
        width: 50%;
    }

    .sthiram-right {
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .cesta-grid {
        gap: 4rem;
    }
}
