* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecd3b5;
    color: 222222;
    margin: 0;
    padding: 0;
}

/*HAMBURGER NAV SECTION*/

#hamburger-nav {
    width: 100%;
    height: 10vh;
    display: none;
    position: relative;
    background-color: rgb(29, 45, 78);
    z-index: 100;
}

.hamburger-logo img {
    height: 4rem;
    border-radius: 100%;
}

.hamburger-logo {
    display: flex;
    align-items: center;
}


.hamburger-container {
    width: 100%;
    height: 100%;
    Padding: 0;
}

.hamburger-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.hamburger-icon {
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-icon span {
    height: 2px;
    width: 25px;
    background-color: white;
}

.hamburger-icon .short-span {
    width: 18px;
}

.hamburger-menu-links ul {
    transition: all 0.3s ease-out;
}

.hamburger-menu-links {
    opacity: 0;

}

.hamburger-menu-links ul li a {
    color: white;
    font-size: 1rem;
}

.hamburger-menu-links ul li {
    list-style: none;
    display: hidden;
}

.hamburger-menu-links{
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgb(29, 45, 78);
    transition: height 0.5s ease-in-out, padding 0.4s ease-in-out;
}


.hamburger-menu-links.open {
    height: 999999999999px;
    width: 100%;
    padding: 1rem;
    margin: 0;
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: center;
    opacity: 1;
}

.hamburger-menu-links ul li {
    color: white;
}

.hamburger-menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
}

.hamburger-icon span {
    transition:  all 0.3s ease-in-out;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 25px;
}

.hamburger-icon span:first-child {
    transform: none;
    opacity: 1;
}
  



/*Header Section ---(Start)---*/

/*Desktop Navigation (start)*/

.desktop-nav {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: lightcyan;
    background-color: rgb(25, 36, 70);
    display: flex;
    gap: 4rem;
    z-index: 100;
}

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

.desktop-nav-links li a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.desktop-nav a:hover {
    color: gray;
    text-decoration: underline;
}

.desktop-nav a:active {
    color: gold;
    text-decoration: underline;
}

.desktop-nav a.active {
    color: gold;
    text-decoration: underline;
}

.desktop-nav img {
    height: 4rem;
    border-radius: 100px;
}

h1, h2, h3 {
    color: #7A1E1E;
    padding: 0.5rem 0;
    
}

.main-container h1, 
.main-container h2 {
    padding-top: 1rem;
}

.main-container p, 
.main-container li, 
.main-container blockquote{
    color: #3b2f2f;
}

/*Desktop Navigation (end)*/


/*Header Section ---(End)---*/


/*HERO Section*/

.main-container {
    display: flex;
    justify-content: center;
}

.sub-main-container {
    padding-bottom: 3rem;
    
}

.hero-section{
    margin: 4rem 0;
}

.hero-section p {
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

.hero-actions {
    padding-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}


button {
    background-color: #7A1E1E;  /* Static: Dark red/burgundy */
    color: #f5f5f5;             /* Text: Light, readable */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    padding: 1rem;
    border-radius: 5px;
}

button:hover {
    background-color: #a32b2b;  /* Hover: Slightly brighter red */
    color: #ffd700;             /* Optional: gold text on hover for accent */
}



.sub-main-container {
    width: 80%;
}

.section-container ul {
    padding: 1rem 0 1rem 2rem;
}


/*HERO Section*/

.section-container {
    margin-top: 30px;
}

.hero-img-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.hero-img-container img {
    border-radius: 100%;
}

.hero-img-container img {
    width: 70%;
}

.section-container h1 {
    padding-top: 0;
}




/*DROPDWON MENU LINKS*/
.hamburger-dropdown-menu {
  display: none;
  padding-left: 1rem;
}

.hamburger-dropdown-menu.show {
  display: block;
}


/*Interarctive Search Container*/

.interactive-search-container {
    margin-top: 3rem;
}