body {
    font-family: 'Varta', sans-serif;
    color: #1D404D;
    margin: 0;      /* Remove default margin */
    padding: 0;     /* Remove default padding */

}

h1 {
font-family: "Tilt Warp";
font-size: clamp(20px, 3vw, 40px);
font-style: normal;
font-weight: 400;
width: 70%;
line-height: 150%; /* 24px */
letter-spacing: 0.96px;
    color: #00767F;
    padding-top: 40px;
}

h2 {
    font-family: "Tilt Warp";
    font-size: clamp(40px, 10vw, 150px); /* min, preferred, max */
    font-style: normal;
    font-weight: 400;
    width: 70%;
    line-height: 100%;
    letter-spacing: 1.75px;
    color: #1D404D;
    text-align: left;
    margin: 0px;
   
}

h3 {
    color: #ffffff;
    font-size: clamp(20px, 3vw, 40px); /* min, preferred, max */
    font-family: Tilt Warp;
    font-weight: 400;
    width: 70%;
    line-height: 36px;
    letter-spacing: 1.75px;
    text-align: left;
}

h4 {
    color: #1D404D;
    font-size: clamp(16px, 2vw, 24px); /* min, preferred, max */
    font-family: Varta;
    line-height: clamp(18px, 3vw, 30px);
    letter-spacing: 1.75px;
    text-align: left;
    width: 70%;
    padding-bottom: 3%;
}

p {
  color: #1D404D;
font-family: Varta;
    font-size: clamp(10px, 3vw, 25px);
font-style: normal;
font-weight: 400;
line-height: 126%; /* 50.4px */
width: 70%;
letter-spacing: -0.8px;
}

/* Add to styles.css */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo left, buttons right */
    padding: 16px 32px;
    background: none;
    margin-top: 32px; /* Add this line for space above the nav bar */
}

.logo {
    width: 122px;
    height: 48px;
}

.nav-buttons {
    display: flex;
    gap: 16px; /* Space between buttons */
}

/* Shared button styles */
.nav-buttons a,
.nav-buttons button {
    font-family: 'Tilt Warp', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.1s;
    text-decoration: none; /* Remove underline for links */
}

/* Hover animation for all buttons */
.nav-buttons button:hover {
    filter: brightness(0.92);
}

/* Click (active) animation for all buttons */
.nav-buttons button:active {
    transform: scale(0.96);
   
}

/* Primary nav buttons */
.nav-btn-primary {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Tilt Warp', sans-serif;
    font-size: 16px;
    background: #1D404D;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.2px;
    word-wrap: break-word;
    text-decoration: none; /* Remove underline for links */
    transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.1s;
}
.nav-btn-primary:hover {
    background: #00767f;
}
.nav-btn-primary:active {
    background: #97E0CF;
    color: #ffffff;
    transform: scale(0.96);
}

/* Secondary nav button */
.nav-btn-secondary {
    background: transparent;
    color: #1D404D;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 1.2px;  
    word-wrap: break-word;
}
.nav-btn-secondary:hover {
    background: none;
    color: #00767F;
}
.nav-btn-secondary:active {
    color: #97E0CF;
    background: none;
    transform: scale(0.96);
   
}

/* Add to styles.css */
.color-bar-container {
    --bar-height: clamp(120px, 20vw, 385px);
    position: relative;
    background: #97E0CF;
    width: 100vw;
    height: var(--bar-height);
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-top: 80px;
    margin-top: 45px; /* Add this line for space above the color bar */
    display: block;
}

.color-bar-container::before,
.color-bar-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: clamp(10px, 2vw, 30px);
    height: 100vh;
    background: linear-gradient(
        to bottom,
        #ffffff 0px,
        #ffffff calc(var(--bar-height) + 80px), /* 125px = margin-top + padding-top */
        #00767F calc(var(--bar-height) + 80px),
        #00767F 100%
    );
    z-index: 2;
}
.color-bar-container::before { right: 13%; }
.color-bar-container::after  { right: 10%; }

.overlap-text {
    /* position: absolute; */ /* Remove or comment this out if you want normal flow */
    width: 100%;
    height: 100%;
    padding-left: 40px;
    text-align: left;
}

 .overlap-text::before,
.overlap-text::after {
    content: "";
    position: absolute;
    top: 0;
    width: clamp(10px, 2vw, 30px);
    height: 100%;
    /* Gradient: first color 0-50%, second color 50-100% */
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 50%,
        #00767F 50%,
        #00767F 100%
    );
    z-index: 1;
}
.overlap-text::before {
    right: 13%;
}
.overlap-text::after {
    right: 10%;
} */

.overlap-text h2 {
    margin-top: -30px; /* Adjust value as needed */
}

.overlap-text h1 {
    margin-top: 10px;
}

.overlap-text h3 {
    margin-top: -20px; /* Adjust as needed */
}

.overlap-text h4 {
    position: relative;
    z-index: 3; /* Higher than the lines */
}

.overlap-text h1,
.overlap-text h2,
.overlap-text h3 {
    position: relative;
    z-index: 2;
}

@media (max-width: 396px) {
    .color-bar {
        height: 250px; /* or any smaller value you prefer */
    }
}

/* Add to styles.css */

/* Hide hamburger by default, show nav-buttons */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 700px) {
    .nav-buttons {
        display: none;
        flex-direction: column;
        background: #f0f0f0;
        position: absolute;
        top: 64px; /* adjust based on your navbar height */
        right: 32px;
        min-width: 180px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 100;
    }
    .nav-buttons.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .navbar {
        position: relative;
    }
    .color-bar-container {
        padding-top: 24px; /* or a value that looks good on mobile */
    }
    .overlap-text h2 {
        margin-top: -10px; /* reduce negative margin if needed */
    }
    .overlap-text h3 {
        margin-top: -8px;  /* reduce negative margin if needed */
    }
    .logo {
        width: 80px;   /* Adjust as needed */
        height: auto;  /* Keeps aspect ratio */
    }
    .color-bar-container::before,
    .color-bar-container::after {
        background: linear-gradient(
            to bottom,
            #ffffff 0px,
            #ffffff calc(var(--bar-height) + 24px), /* adjust for mobile padding-top */
            #00767F calc(var(--bar-height) + 24px),
            #00767F 100%
        );
    }
}

@media (max-width: 500px) {
    .color-bar-container::before,
    .color-bar-container::after {
        background: linear-gradient(
            to bottom,
            #ffffff 0px,
            #ffffff calc(var(--bar-height) + 25px), /* less offset for small screens */
            #00767F calc(var(--bar-height) + 25px),
            #00767F 100%
        );
    }
}

/* paragraphs */

.main-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* links */

.color-bar-container.icons-bar {
    width: 100%;              /* Only as wide as its parent */
    left: unset;
    right: unset;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    padding: 20px;
    background: #97E0CF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;   /* Prevents padding from causing overflow */
    border-radius: 16px;      /* Optional: rounded corners for a nice look */
    overflow: hidden;         /* Prevents child overflow */
}

.icon-links {
    display: flex;
    gap: 40px;

}

.icon-links a {
    color: #1D404D;
    font-size: 4rem;
    transition: color 0.2s;
    text-decoration: none;
}
.icon-links a:hover {
    color: #00767F;
}

/* Hide vertical lines for the icons-bar color bar */
.color-bar-container.icons-bar::before,
.color-bar-container.icons-bar::after {
    display: none;
    content: none;
}

@media (max-width: 600px) {
    .icon-links a {
        font-size: 2.5rem;
        gap: 20px;
    }
}

/* New photo scroll bar styles */
.photo-scroll-bar {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    padding: 20px 24px;      /* Adds horizontal and vertical padding inside the bar */
    margin: 40px auto 40px auto; /* Adds 40px space above and below the bar */
    scrollbar-width: thin;
    scrollbar-color: #97E0CF #f0f0f0;
    background: #f0f0f0;     /* Light background for contrast */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.photo-scroll-bar img {
    height: 60vh;      /* Adjust height as needed */
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}

@media (max-width: 600px) {
    .photo-scroll-bar img {
        height: 40vh; /* or another smaller value, e.g. 120px */
    }
}

/* Photo modal styles */
.photo-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center; align-items: center;
}
.photo-modal.open {
    display: flex;
}
.photo-modal .modal-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.close-modal {
    position: absolute;
    top: 32px;
    right: 48px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
}
