* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 250, 239);
}

nav {
    padding: 1.5rem;
    position: relative;
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    width: 120px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #daaa27;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4b5563;
    transition: all 0.3s ease-in-out;
}

/* Slider styles */
.slider-container {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background-color: initial;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: white;
}

.contact-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    text-align: left;
}

.contact-section p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-section a {
    color: #6b7280;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    text-align: center;
}

.about-section.visible {
    visibility: visible;
}

h1 {
    font-size: 3rem;
    color: #4b5563;
    margin-bottom: 4rem;
    font-weight: lighter;
    text-align: left;
}

.about-section h1 {
    opacity: 0;
    transform: translateY(20px);
}

.about-section.visible h1 {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 3rem;
}

.about-logo {
    flex: 1;
    opacity: 0;
    transform: translateX(-20px);
}

.about-section.visible .about-logo {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 0.3s;
}

.about-logo img {
    width: 250px;
}

.about-section.visible .about-logo img {
    animation: float 6s ease-in-out infinite;
}

.about-text {
    flex: 2;
    text-align: left;
    opacity: 0;
    transform: translateX(20px);
}

.about-section.visible .about-text {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 0.5s;
}

.about-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Content Section */
.content-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.content-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 6rem;
}

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

.content-block img {
    width: 500px;
    height: 375px;
    object-fit: cover;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-weight: lighter;
}

.content-text p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        width: 80px;
    }

    h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(255, 251, 239);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

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

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .slide img {
        height: 400px;
    }

    .about-section,
    .content-section,
    .contact-section {
        padding: 0 1.5rem;
        margin: 4rem auto;
    }

    .contact-section {
        text-align: center;
    }

    /* Center everything on mobile */
    .about-section h1,
    .content-section h1 {
        text-align: center;
    }

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

    .about-text {
        text-align: center;
    }

    .content-block,
    .content-block:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .content-text {
        text-align: center;
    }

    .content-block img {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }

    .content-text h2 {
        font-size: 1.8rem;
    }

    .content-text p,
    .about-text p,
    .contact-section p,
    .contact-section a {
        font-size: 1.1rem;
    }
}
