/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-family: Georgia, serif;
}


/* Animations */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 1s ease forwards;
}

.scroll-fade-in {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: translateY(30px);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* HEADER STYLING */

header {
    background-color: #000;
    padding: 2.5rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: padding 0.3s ease;
}

header.shrink {
    padding: 1rem 1.5rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.icon-left {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.icon-right {
    display: none;
}

.logo-centered {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-logo {
    height: 160px;
    max-width: 100%;
    transition: height 0.3s ease;
}

header.shrink .main-logo {
    height: 100px;
}


/* NAV LINKS */

.nav-links-container {
    margin-top: 1.5rem;
    background-color: #000;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}


/* HAMBURGER MENU */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-left: 1rem;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* RESPONSIVE (MOBILE) */

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }
    .nav-links-container {
        display: none;
        width: 100%;
    }
    .nav-links-container.active {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    .hamburger {
        display: flex;
    }
    .main-logo {
        height: 120px;
    }
    header.shrink .main-logo {
        height: 80px;
    }
}


/* Hero Section */

.hero {
    background-image: url('city.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 75vh;
    /* updated */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    padding-top: 4rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    background: black;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.3s;
    display: inline-block;
    border: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}


/* About Section */

.info-section {
    background: #000;
    padding: 4rem 2rem;
    text-align: center;
}

.info-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.info-section p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.info-boxed-text {
    border: 1px solid #555;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    background-color: #111;
}


/* Contact Section */

.contact-section {
    background: #fff;
    color: #000;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background: black;
    color: white;
    padding: 0.75rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #333;
    transform: scale(1.03);
}

.email-link {
    color: #fff;
    text-decoration: underline;
}

.email-link:hover {
    color: #bbb;
}


/* About Flyer Style */

.about-flyer-style {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    font-family: 'Georgia', serif;
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.ribbon {
    background-color: #a68a62;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-flyer-style p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.about-contact p {
    margin-top: 1rem;
    color: #eee;
}

.about-contact a {
    color: #fff;
    text-decoration: underline;
}

.about-contact a:hover {
    color: #bbb;
}


/* Footer */

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}