@font-face {
    font-family: 'ArnoPro';
    src: url('fonts/Arno-Pro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ArnoPro';
    src: url('fonts/Arno-Pro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ArnoPro';
    src: url('fonts/Arno-Pro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'ArnoPro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    background-color: #fff;
    text-align: center;
}

.container {
    padding: 25px 10px;
}

/* Header Styles */
h1 {
    color: red;
    font-size: 4rem;
    margin: 0 0 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Smaller Subtitle Styles */
.smaller-subtitle {
    color: black;
    font-size: 1.5rem;
}

/* MENU */

.main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: 'ArnoPro', Arial, sans-serif;
    color: black;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: red;
}

a.active {
    color: red;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background-color: white;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* HOME PAGE IMAGES */
.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-image {
    width: 300px;
    height: auto;
}

/* CONTENT PAGES */
.content-holder {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #222;
    font-family: 'ArnoPro', Arial, sans-serif;
}

/* Responsive stacking for smaller screens */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        gap: 10px;
    }

    .hero-image {
        width: 90%;
        max-width: 250px;
    }
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background-color: white;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
        /* Font size for smaller devices */
    }

    h5 {
        font-size: 1.2rem;
        /* Font size for smaller devices */
    }

    .smaller-subtitle {
        font-size: 0.9rem;
        /* Font size for smaller devices */
    }

    .menu-toggle {
        display: block;
    }

    /* Override nav layout for mobile */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background-color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding-top: 60px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        margin: 0;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.2rem;
    }
}


/* SLIDER */

.text-slider {
    position: relative;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px 40px;
    min-height: 120px;
    font-size: 1.2rem;
    font-family: 'ArnoPro', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide {
    display: none;
    text-align: left;
    margin: 0 10px;
}

.slide.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 40%;
    background: none;
    border: none;
    font-size: 2rem;
    /* increased from 1rem */
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    /* vertical and horizontal padding */
    line-height: 1.5;
    /* optional, improves spacing */
}

.slider-btn:hover {
    color: #333;
}

.slider-btn.prev {
    left: -15px;
}

.slider-btn.next {
    right: -15px;
}

.slider-index {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #888;
    text-align: center;
    font-family: 'ArnoPro', Arial, sans-serif;
}