@font-face {
    font-family: 'Slight';
    src: url('slight-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --cream: #F5F5DC;
    --beige: #F7F3E9;
    --ivory: #FEFEF3;
    --light-green: #8FBC8F;
    --dark-green: #365C44;
    --sage-green: #628473;
    --text-dark: #365C44;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ivory);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--ivory);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    height: 68px;
    min-height: 68px;
    max-height: 68px;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 68px;
    box-sizing: border-box;
}

.nav-brand {
    text-decoration: none;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.heart {
    color: var(--light-green);
}

.nav-brand:hover .logo-text {
    color: var(--sage-green);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.language-switcher {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 16px;
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-links a:hover {
    color: var(--sage-green);
}

.language-switcher {
    position: relative;
}

.language-switcher select {
    background-color: transparent;
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    appearance: none;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 20px;
}

.language-switcher select:hover {
    background-color: var(--cream);
    color: var(--text-dark);
}

.language-switcher select:focus {
    outline: none;
}

.mobile-lang-options {
    display: none;
}

/* Hero Section */
.hero {
    height: calc(100vh - 68px);
    margin-top: 68px;
    background-color: #FEFFFE;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/brush.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 60% auto;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}


.couple-names {
    font-family: 'Slight', cursive;
    font-size: 80px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark-green);
    margin-bottom: 1.2rem;
    text-align: center;
    text-shadow: 0 1px 2px color-mix(in srgb, var(--dark-green) 15%, transparent);
}

.getting-married {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.wedding-details {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    padding: 2.5rem 4rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(54, 92, 68, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 1rem auto 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.3px;
}

.wedding-details .date {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0 0 0.8rem 0;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.8rem 0;
}

.divider-line {
    height: 1px;
    width: 80px;
}

.divider-line.left {
    background: linear-gradient(to right, transparent, rgba(54, 92, 68, 0.3));
}

.divider-line.right {
    background: linear-gradient(to left, transparent, rgba(54, 92, 68, 0.3));
}

.divider-dot {
    color: var(--sage-green);
    font-size: 8px;
    margin: 0 8px;
    font-weight: bold;
}

.wedding-details .venue {
    margin: 0.8rem 0 0 0;
}

.wedding-details .venue-name {
    margin: 0 0 0.3rem 0;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--dark-green);
    letter-spacing: 0.2px;
}

.wedding-details .venue-location {
    margin: 0;
    font-weight: 300;
    font-size: 1.05rem;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

/* Sections */
section {
    padding: 6rem 0;
}

section:nth-child(even) {
    background-color: var(--cream);
}

/* Section-specific backgrounds */
#story {
    background-color: var(--ivory);
}

#info {
    background-image: linear-gradient(45deg, #F7F3D9, #E8EFE3);
    padding-bottom: 6rem;
}

#details {
    background-color: white;
}

#contact {
    background-color: var(--ivory);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    background-color: rgb(69, 130, 99);
    margin: 0.25rem auto 0;
}

/* Story Section */
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

.story-row-reverse {
    direction: rtl;
}

.story-row-reverse > * {
    direction: ltr;
}

.story-item {
    text-align: left;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
}

.photo-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-column-offset {
    padding-top: 2rem;
}

/* Photo styling */
.photo-grid img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
    width: 254px;
}

.photo-short {
    height: 126px;
}

.photo-medium {
    height: 198px;
}

.photo-tall {
    height: 340px;
}

.story-item h3 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-item p {
    line-height: 1.7;
    margin: 0;
    color: var(--text-light);
}

.breakable-word {
    hyphens: auto;
    word-break: break-word;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Information Section */
.schedule {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.schedule-entry {
    margin-bottom: 1.2rem;
}

.schedule-entry:last-child {
    margin-bottom: 0;
}

.schedule-day {
    display: block;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.schedule-event {
    display: block;
    color: #666666;
    font-size: 1rem;
    line-height: 1.3;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-item:hover {
    box-shadow: 0 12px 35px rgba(54, 92, 68, 0.12);
}

.info-icon {
    margin-bottom: 0.5rem;
    border-radius: 50%;
    padding: 15px;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Icon colors and backgrounds following the gradient */
.info-item:nth-child(1) .info-icon {
    color: #E6C547;
    background-color: rgba(230, 197, 71, 0.09);
}

.info-item:nth-child(1) h3 {
    color: #E6C547;
}

.info-item:nth-child(2) .info-icon {
    color: #7B9B6A;
    background-color: rgba(123, 155, 106, 0.06);
}

.info-item:nth-child(2) h3 {
    color: #7B9B6A;
}

.info-item:nth-child(3) .info-icon {
    color: #458563;
    background-color: rgba(69, 133, 99, 0.06);
}

.info-item:nth-child(3) h3 {
    color: #458563;
}

.info-item h3 {
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    line-height: 1.4;
    color: #666666;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.info-item p.ceremony-time {
    font-size: 2rem;
    font-weight: 300;
    color: #666666;
    margin: -0.5rem 0 0.2rem 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1rem;
    font-feature-settings: "tnum";
}


.info-link {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--sage-green);
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(54, 92, 68, 0.2);
}

.info-link:hover {
    background-color: var(--dark-green);
}

/* Details Section */
.details-list {
    max-width: 800px;
    margin: 0 auto;
}

.details-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.question::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.details-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.question {
    color: var(--dark-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 2rem;
}

.question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--dark-green);
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.details-item.open .question::after {
    transform: translateY(-50%) rotate(180deg);
}

.question:hover {
    color: var(--sage-green);
}

.question:hover::after {
    border-top-color: var(--sage-green);
}

.answer {
    color: #666666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 0;
    display: none;
}

.details-item.open .answer {
    display: block;
    padding-top: 1rem;
}

/* Crew Section */
#crew {
    background-color: var(--beige);
}

.crew-intro {
    text-align: center;
    margin: 0 auto 4rem;
    color: var(--text-light);
    max-width: 600px;
}

.crew-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.crew-person {
    flex: 0 0 160px;
    text-align: center;
}

.crew-avatar-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--light-green);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.crew-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.4) sepia(0.6);
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.crew-person h4 {
    color: var(--dark-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.crew-role {
    color: var(--sage-green);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.3;
    max-width: 140px;
    margin: 0 auto;
}


/* Footer */
.footer {
    background-color: var(--dark-green);
    text-align: center;
    padding: 2.5rem 0;
}

.footer-names {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 245, 0.7);
    margin-bottom: 0.5rem;
}

.footer p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 245, 0.7);
}

.footer p:not(.footer-names) {
    font-size: 0.85rem;
}

.footer a {
    color: rgba(255, 255, 245, 0.7);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: rgba(255, 255, 245, 0.9);
}

/* Responsive Design */
/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Mobile overlay - hidden on desktop */
.mobile-overlay {
    display: none;
}

/* Mobile menu container - hidden on desktop */
.mobile-menu-container {
    display: none !important;
}

/* Tablet styles - when container width is constrained */
@media (max-width: 1240px) {
    /* Tablet styles - keep normal navbar, no mobile menu */
    /* Mobile overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .navbar {
        height: auto;
        min-height: 56px;
        max-height: none;
        padding: 0.75rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.mobile-menu-open {
        box-shadow: none;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 56px;
        position: relative;
    }
    
    /* Keep desktop nav elements visible on tablet */
    
    /* Show mobile menu container */
    .mobile-menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0;
        background-color: var(--ivory);
        display: flex !important;
        flex-direction: column;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-container.mobile-open {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        box-shadow: none;
    }
    
    .mobile-menu-container .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        display: flex;
        background-color: transparent;
        padding: 1rem 20px 0 20px;
        margin-top: 0;
    }
    
    .mobile-menu-container .nav-links a {
        font-size: 18px;
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 19px;
    }
    
    .mobile-menu-container .language-switcher {
        position: static;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 20px;
        background-color: transparent;
        border-top: 1px solid rgba(98, 132, 115, 0.2);
        margin-top: 1rem;
    }
    
    .mobile-menu-container .language-switcher select {
        display: none;
    }
    
    .mobile-menu-container .language-switcher .mobile-lang-options {
        display: flex;
        gap: 0.5rem;
    }
    
    .mobile-lang-option {
        padding: 0.4rem 1rem;
        border: none;
        background: transparent;
        color: var(--text-light);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        border-radius: 15px;
        transition: all 0.2s ease;
        user-select: none;
        opacity: 0.9;
    }
    
    .mobile-lang-option:hover {
        opacity: 1;
        background-color: rgba(98, 132, 115, 0.15);
    }
    
    .mobile-lang-option.active {
        opacity: 1;
        background-color: rgba(98, 132, 115, 0.25);
        color: var(--sage-green);
    }
    
    .couple-names {
        font-size: 4rem;
    }
    
    .getting-married {
        font-size: 1.8rem;
    }
    
    .wedding-details {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    /* Story layout switches to stacked when container is constrained */
    .story-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-item {
        order: 1;
        padding: 2rem;
        background-color: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin: 0 auto;
        max-width: 600px;
        box-sizing: border-box;
    }
    
    .photo-grid {
        order: 2;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        padding: 16px !important;
        justify-items: center;
        margin: 0 auto;
        max-width: 90%;
    }
    
    /* On tablet/mobile, all rows have same order: text first, photos second */
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .info-item {
        max-width: 400px;
        width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
}

/* Crew section: Force 3-2 layout by constraining max-width */
@media (max-width: 1100px) {
    .crew-grid {
        gap: 2rem;
        max-width: 560px; /* Forces 3 items max per row */
    }
    
    .crew-avatar-container {
        width: 160px;
        height: 160px;
    }
    
    .crew-photo {
        width: 160px;
        height: 160px;
    }
    
    .crew-person h4 {
        font-size: 1rem;
    }
    
    .crew-role {
        font-size: 0.8rem;
    }
}

/* Crew section: Force 1-1-1-1-1 layout (single column) */
@media (max-width: 640px) {
    .crew-grid {
        max-width: 160px; /* Forces 1 item per row */
        gap: 2rem;
    }
}

/* Hero names smaller for screens 800px and below */
@media (max-width: 800px) {
    .couple-names {
        font-size: 3.25rem;
    }
}

/* Desktop story layout - side-by-side with proper ordering */
@media (min-width: 1241px) {
    .story-row {
        direction: ltr;
    }
    
    .story-row .story-item {
        order: unset;
    }
    
    .story-row .photo-grid {
        order: unset;
    }
    
    .story-row-reverse .photo-grid {
        order: 1;
    }
    
    .story-row-reverse .story-item {
        order: 2;
    }
    
    .crew h2 {
        margin-bottom: 2rem;
    }
}

/* Photo grids switch to single column at 680px */
@media (max-width: 680px) {
    .photo-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .photo-column {
        display: block;
        margin-bottom: 16px;
    }
    
    .photo-column:last-child {
        margin-bottom: 0;
    }
    
    .photo-column-offset {
        padding-top: 0;
    }
    
    .photo-grid img {
        width: 254px;
        margin: 0 auto 16px auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }
    
    .photo-grid img:last-child {
        margin-bottom: 0;
    }
}

/* Navigation - hamburger menu for screens 750px and below */
@media (max-width: 750px) {
    /* Mobile overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
        position: static;
        transform: none;
    }
    
    /* Hide desktop nav elements */
    .nav-links {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
}

/* Other responsive styles for smaller screens */
@media (max-width: 480px) {
    .couple-names {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .getting-married {
        font-size: 1.5rem;
    }
    
    .wedding-details {
        font-size: 1rem;
    }
    
    
    /* Mobile story layout adjustments */
    .story-row {
        display: flex;
        flex-direction: column;
        width: 100vw;
        margin-left: -15px;
        padding: 0;
    }
    
    .story-item {
        order: 1;
        margin: 0 15px 16px 15px;
        padding: 1.5rem;
        background-color: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    .photo-grid {
        order: 2;
        margin: 0 15px 16px 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-row:last-child .photo-grid {
        margin-bottom: 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add some margin to account for fixed navbar */
section {
    scroll-margin-top: 68px;
}