/* General Reset */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fdf7ed; /* Light cream background */
}

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

ul {
    list-style: none;
}

/* Header Section */
.hero-header {
    background-color: #c7e2e2; /* Light blue */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #d64b13; /* Rhapsody Orange */
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-nav ul {
    display: flex;
    gap: 20px;
}

.hero-nav ul li a {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.hero-nav .nav-icons {
    display: flex;
    gap: 15px;
}

.hero-nav .nav-icons a i {
    font-size: 18px;
    color: #333;
}

/* Hero Section */
.rhapsody-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: #fdf7ed; /* Light cream */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-text {
    max-width: 600px;
    padding-left: 20px;
}

.hero-text h2 {
    font-size: 36px;
    color: #d64b13; /* Rhapsody Orange */
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background-color: #d64b13; /* Button Orange */
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.hero-button:hover {
    background-color: #b93d0f; /* Darker Orange */
}


.button-45 {
    align-items: center;
    background-color: #FFE7E7;
    background-position: 0 0;
    border: 1px solid #FEE0E0;
    border-radius: 11px;
    box-sizing: border-box;
    color: #d64b13;
    cursor: pointer;
    display: flex;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 25px;
    list-style: outside url(https://www.smashingmagazine.com/images/bullet.svg) none;
    padding: 2px 8px;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
    text-underline-offset: 1px;
    transition: border .2s ease-in-out, box-shadow .2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    word-break: break-word;
    margin-top: 10px;
}

.button-45:active,
.button-45:hover,
.button-45:focus {
    outline: 0;
}


.button-45:active {
    background-color: #D33A2C;
    box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px 0 inset;
    color: #FFFFFF;
}

.button-45:hover {
    background-color: #FFE3E3;
    border-color: #FAA4A4;
}

.button-45:active:hover,
.button-45:focus:hover,
.button-45:focus {
    background-color: #D33A2C;
    box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px 0 inset;
    color: #FFFFFF;
}



.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    background-color: #ffffff;
    padding: 0.625em;
    border-radius: 6.25em;
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    max-width: 85%;
}

.search-input {
    font: inherit;
    color: #d64b13;
    border: 0;
    outline: 0;
    border-radius: 5em;
    box-sizing: border-box;
    height: 2.5em;
    width: 20em;
    padding: 0 0.714em;

    &::placeholder {
        color: currentColor;
    }
}

.search-btn {
    font: inherit;
    color: #d64b13;
    border: 1px solid #ffe3e3;
    outline: 0;
    border-radius: 5em;
    background-color: #ffe3e3;
    padding: 0 1em;
    height: 2.5em;
    cursor: pointer;
    transition: border .2s ease-in-out;
}

.search-btn:hover {
    border: 1px solid #faa4a4;
}







/* Base styles for header */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1em;
}

.hero-nav {
    display: flex;
    align-items: center;
}

.hero-nav ul {
    display: flex;
    list-style: none;
    gap: 1em;
    margin: 0;
    padding: 0;
}

.hero-nav ul li a {
    text-decoration: none;
    color: #000;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3em;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* Hide nav links on small screens */
@media (max-width: 768px) {

    .hero-nav {
        margin-right: 20px;
    }

    .hero-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px;
        right: 0;
        background: #fff;
        min-width: 25%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0 10px;
    }
    .hero-nav ul.active {
        display: flex;
    }

    .hero-nav ul li {
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .burger-menu {
        display: flex;
    }
}
