/* Color Palette
Background: eae3c9
Font: 6b705c
Text highlight: ddbea9
Sub colors: cb997e, ffe8d6, b7b7a4, a5a58d
*/
/* COLOR PALETTE & FONT FACES */
@font-face {
    font-family: 'ObjectSansReg';
    src: url('../fonts/ObjectSans-Regular.woff2') format('woff2'),
        url('../fonts/ObjectSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ObjectSansHeavy';
    src: url('../fonts/ObjectSans-Heavy.woff') format('woff'),
        url('../fonts/ObjectSans-Heavy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* BASE STYLES */
html {
    background-color: #eae3c9;
    color: #6b705c;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

body {
    font-family: 'ObjectSansReg', sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 30px 15px;
}

/* TYPOGRAPHY */
h1,
p {
    margin: 0;
    margin-top: 10px;
}

h1 {
    font-family: 'ObjectSansHeavy', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
}

h1 a {
    color: inherit;
}

p {
    font-size: clamp(18px, 2vw, 24px);
    margin-right: 15px;
}

/* LAYOUT */
main {
    padding: 40px 20px;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #eae3c9;
    height: 35px;
    padding: 20px 20px 10px;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    white-space: nowrap;
    font-family: 'ObjectSansHeavy', sans-serif;
}

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

.nav-logo {
    height: 40px;
    transition: height 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: 50px;
}

.nav-right a {
    color: #6b705c;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* HERO SECTION */
#hero {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#hero h1 {
    margin-bottom: 20px;
}

#hero p {
    line-height: 1.4;
}

/* FEATURED SECTION */
#featured {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 5px;
    margin-top: 100px;
}

#featured h1 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 3px;
}

#featured h1 a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

#featured p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ABOUT SECTION */
.about-container {
    display: block;     /* Stacked layout for all devices */
    margin: 0 0 20px;
}

/* Image Container */
.wrap-image-container {
    margin: 0 auto 20px
    text-align: center;
}

/* Image */
.wrap-image {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Optional: .about-text if you keep the <div> wrapper in HTML */
.about-text {
    margin: 0;
    text-align: left;
}

.image-caption {
    font-size: 0.7rem;
    margin-top: 5px;
    text-align: center;
}

.about_bottom {
    font-size: clamp(8px, 2vw, 12px);
    text-align: left;
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #eae3c9;
    color: #6b705c;
    text-align: right;
    padding: 0;
    box-sizing: border-box;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 15px 0;
}

.footer-text {
    font-size: 12px;
    margin: 0;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-icon i {
    font-size: 16px;
    color: #6b705c;
    transition: color 0.3s ease;
}

.footer-icon i:hover {
    color: #0092cc;
}

/* LINK STYLES */
a {
    color: #6b705c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #ddbea9;
    text-decoration: wavy;
}

.bean_log_2025 p {
    font-size: clamp(14px, 2vw, 24px);
}

/* MEDIA QUERIES */

/* Navigation Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 10px 20px 5px;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-right a {
        font-size: 1rem;
        padding: 6px 8px;
    }

    .nav-right {
        gap: 15px;
    }
}

@media (min-width: 601px) {
    .about-container {
      display: flex;
      flex-direction: row-reverse; /* image on the right */
      align-items: flex-start;
      gap: 20px;
    }
    
    /* Optional: let text take available space */
    .about-text {
      flex: 1;
    }
  }