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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: black;
}

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


header {
    position: relative;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 1s;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(99, 3, 48);
    margin-left: 1rem;
}

.logo-container h1:hover {
    color: wheat;
    transition: 1s;
}

.logo-img {
    border-radius: .5rem;
    width: 60px;
    height: auto;
    background-color: rgb(99, 3, 48);
    padding: 5px; 
}

.logo-img:hover {
    color: wheat;
    transition: 1s;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    color: rgb(99, 3, 48);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding: .5rem 0;
}

.nav-links a:hover {
    color: wheat;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: 1s;
}

.nav-links a:hover {
    color: white;
}

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

.nav-cta {
    background-color: black;
    color: rgb(99, 3, 48);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: rgb(99, 3, 48);
}


.content {
    margin-top: 120px;
    padding: 2rem 5%;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .caked-title h1 {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 1rem 3%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 2.5rem;
        margin-right: 1rem;
        color: rgb(99, 3, 48);
    }


    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: black;
        width: 100%;
        position: fixed;
        top: 80px;
        left: 0;
        padding: 1rem 0;
        z-index: 1001;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu a {
        padding: 1rem 2rem;
        color: white;
        font-weight: 500;
        border-bottom: 1px solid #f1f1f1;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: #fff0f0;
        color: rgb(99, 3, 48);
        padding-left: 2.5rem;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-cta {
        background-color: black;
        color: white !important;
        margin: 1rem 2rem;
        text-align: center;
        padding: 1rem !important;
        border-radius: 30px;
        font-weight: 600;
        border: none !important;
    }

    .content {
        margin-top: 100px;
        padding: 2rem 3%;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1.2rem 4%;
    }

    .logo-container h1 {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-links li {
        margin-left: 1.5rem;
    }
}


@media (min-width: 1200px) {
    .navbar {
        padding: 1.5rem 8%;
    }

    .content {
        padding: 2rem 8%;
    }
}



/* Main Content */

.main-content {
    margin-top: 100px;
    padding: 2rem 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: rgb(99, 3, 48);;
    color: black;
    border-radius: .5rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(212, 117, 91, 0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3rem;
    width: 300px;
    margin: 0 auto;
    opacity: .95;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.story-text h2 {
    color: beige;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: rgb(99, 3, 48);
}

.story-image {
    background: rgb(99, 3, 48);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image i {
    font-size: 8rem;
    color: black;
    margin-bottom: 1rem;
}

.values-section {
    background: rgb(99, 3, 48);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section h2 {
    text-align: center;
    color: black;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: black;
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 3rem;
    color: rgb(99, 3, 48);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    text-align: center;
    color: black;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgb(99, 3, 48);;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member i {
    font-size: 4rem;
    color: black;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: black;
    font-weight: bold;
    margin-bottom: 1rem;
}

.commitment-section {
    background: rgb(99, 3, 48);
    color: black;
    padding: 4rem 2rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(212, 117, 91, 0.3);
}

.commitment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.commitment-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}


/* Footer */

.footer {
    background: rgb(99, 3, 48);
    color: black;
    position: relative;
    margin-top: 4rem;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100px;
}

.footer-content {
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: black;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 2rem;
    opacity: .9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: black;
    font-size: 1.5rem;
    transition: 1s;
}

.social-links a:hover {
    color: #d4755b;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: black;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: black;
    text-decoration: none;
    margin-bottom: .5rem;
    opacity: .9;
}

.footer-col a:hover {
    color: #d4755b;
}

.footer-menu {
    list-style: none;
}

.newsletter-form {
    margin-top: 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: #333;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group button {
    padding: .8rem 1rem;
    background: black;
    border: none;
    border-radius: 5px;
    color: rgb(99, 3, 48);
    cursor: pointer;
    transition: 1s;
}

.form-group button:hover {
    background: #c66548;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: black;
    text-decoration: none;
    opacity: .9;
}

.footer-links a:hover {
    color: #d4755b;
}

.copyright {
    opacity: 0.7;
}


/* Responsive Design */

@media (max-width: 768px) {

    .main-content {
        padding: 2rem 3%;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image i {
        font-size: 5rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

