/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #2A2F33;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
}

/* Header */
header {
    background-color: #6F4E37;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}

header .logo {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

header nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #FF7F50;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1, .hero p, .cta-button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    background-color: #FF7F50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #E56A40;
    transform: scale(1.05);
}

/* Content Section */
.content {
    padding: 4rem 0;
}



/* About Us Content */
.about-us-content .about-us-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease;
}

.about-us-content .about-us-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-us-content .about-us-item:hover {
    border-color: #FF7F50;
}

.about-us-content .about-us-item:nth-child(even) {
    flex-direction: row-reverse;
}

.about-us-content .about-us-item img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

.about-us-content .caption {
    flex: 1;
}

.about-us-content .caption h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* Our Values Section */
.our-values {
    background-color: #f8f8f8;
    padding: 4rem 0;
    text-align: center;
}

.our-values h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.value-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item span {
    font-size: 2.5rem;
    color: #FF7F50;
}

.value-item h4 {
    font-size: 1.25rem;
    margin: 1rem 0;
}

/* Footer */
footer {
    background-color: #6F4E37;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Media Queries */
@media (max-width: 768px) {
    /* Header */
    header {
        flex-direction: column;
        padding: 1rem;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        align-items: center;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem;
    }

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


    /* About Us Content */
    .about-us-content .about-us-item,
    .about-us-content .about-us-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .about-us-content .about-us-item img {
        max-width: 100%;
    }

    /* Our Values Section */
    .values-grid {
        grid-template-columns: 1fr;
    }
}
