 @import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

 /* main style */
 html {
     overflow-y: scroll;
 }

 body {
     background-color: #F2F1ED;
     font-family: Zain, sans-serif;
     margin: 0;
     padding: 0;
     opacity: 0;
     transition: opacity 0.2s ease-in;
 }

 body.loading {
     opacity: 0;
 }

 body.loaded {
     opacity: 1;
 }

 h1 {
     font-family: "BBH Hegarty", sans-serif;
     background-color: #4FBA7F;
     text-align: center;
     padding: 20px;
     font-size: 36px;
     margin: 0;
     font-weight: normal;
 }

 h2 {
     font-family: "BBH Hegarty", sans-serif;
     text-align: center;
     font-size: 24px;
     font-weight: normal;
 }

 a {
     color: black
 }

 /* navigation bar */
 #navbar {
     display: flex;
     background-color: #F2F1ED;
     margin: 0;
     padding: 10px 20px;
     align-items: center;
     position: relative;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 }

 #bottle-logo {
     width: 200px;
     height: auto;
     flex-shrink: 0;
 }

 #logo-link {
     display: inline-block;
     cursor: pointer;
 }

 #center-buttons {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
 }

 #center-buttons-group {
     display: flex;
     font-size: 1.5rem;
     background-color: #FFC857;
     border-radius: 10px;
     justify-content: center;
     align-items: center;
     gap: 10px;
     padding: 5px;
 }

 #right-buttons {
     display: flex;
     gap: 10px;
     align-items: center;
     margin-left: auto;
 }

 #right-buttons-group,
 .right-buttons-group {
     display: flex;
     border-radius: 10px;
     justify-content: center;
     align-items: center;
     gap: 10px;
 }

 .navbutton {
     text-decoration: none;
     color: black;
     padding: 8px 20px;
     border-radius: 10px;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
 }

 #discover-button:hover {
     background-color: #ffb92c;
 }

 #about-us-button:hover {
     background-color: #ffb92c;
 }

 #guides-button:hover {
     background-color: #ffb92c;
 }

 #login {
     background-color: #D7D7D7;
 }

 #create-account {
     background-color: #C1272D;
     color: white;
 }

 /* Profile dropdown in navbar */
 #logged-in-profile {
     display: none;
     align-items: center;
     gap: 10px;
 }

 .profile-container {
     position: relative;
 }

 .profile-dropdown {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 12px;
     cursor: pointer;
 }

 #profile-link {
     display: inline-block;
     width: 75px;
     height: 75px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .nav-profile-pic {
     width: 75px;
     height: 75px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid #4FBA7F;
     transition: border-color 0.3s ease;
 }

 .nav-profile-pic:hover {
     border-color: #C1272D;
 }

 .dropdown-arrow {
     width: 24px;
     height: 24px;
     border-right: 3px solid #333;
     border-bottom: 3px solid #333;
     transform: rotate(45deg);
     margin-top: -8px;
     cursor: pointer;
     flex-shrink: 0;
 }

 /* Dropdown Menu */
 .dropdown-menu {
     display: none;
     position: absolute;
     top: 70px;
     right: 0;
     background-color: #F2F1ED;
     border: 3px solid #FFC857;
     border-radius: 15px;
     padding: 15px;
     min-width: 220px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     z-index: 1000;
 }

 .dropdown-menu.show {
     display: block;
 }

 .dropdown-header {
     padding-bottom: 10px;
     border-bottom: 1px solid #D7D7D7;
     margin-bottom: 10px;
 }

 .dropdown-username {
     font-family: "BBH Hegarty", sans-serif;
     font-size: 16px;
     margin: 0 0 3px 0;
     font-weight: normal;
 }

 .dropdown-account-type {
     font-family: "Zain", sans-serif;
     font-size: 12px;
     color: #666;
     margin: 0;
 }

 .convert-btn {
     font-family: "Zain", sans-serif;
     font-size: 13px;
     background-color: #D7D7D7;
     color: #000;
     border: none;
     border-radius: 5px;
     padding: 8px 12px;
     width: 100%;
     cursor: pointer;
     margin-bottom: 10px;
     transition: background-color 0.3s ease;
 }

 .convert-btn:hover {
     background-color: #C0C0C0;
 }

 .dropdown-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 8px;
     text-decoration: none;
     color: #000;
     font-family: "Zain", sans-serif;
     font-size: 14px;
     border-radius: 5px;
     transition: background-color 0.2s ease;
 }

 .dropdown-item:hover {
     background-color: #E8E6E0;
 }

 .dropdown-icon {
     font-size: 16px;
 }

 .dropdown-icon-img {
     width: 18px;
     height: 18px;
     object-fit: contain;
 }

 .dropdown-divider {
     height: 1px;
     background-color: #D7D7D7;
     margin: 8px 0;
 }

 /* content section */

 #section-1 {
     text-align: center;
     padding: 50px;
     color: rgb(68, 68, 68);
     background-color: #FFC857;
     border-radius: 100%;
     width: 400px;
     height: 400px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     margin: 25px auto;
 }

 /* foooter */
 footer {
     background-color: #4FBA7F;
     color: black;
     padding: 30px 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-top: 3px solid #3C9A66;
     gap: 60px;
     font-size: 18px;
 }

 #simple-logo {
     width: 50px;
     height: auto;
     margin-right: 75px;
 }