/* Page-specific styles for index.html */

/* Menu items color in first section */
.menu li a {
    color: #FDFFDA;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Mobile hamburger and search - same color as menu */
.mobile-search-icon svg {
    color: #FDFFDA;
}

.hamburger-icon {
    color: #FDFFDA;
}

.mobile-hamburger-box {
    border-left-color: #FDFFDA;
}

/* Fixed text color in section two */
body.scroll-section-two .fixed-text {
    color: #FD4950;
}

/* Logo size and color */
.logo svg {
    width: 137.159px;
    height: 21.3px;
}

.logo svg path {
    fill: #FDFFC2;
}

.logo svg path:first-child {
    fill: #FD4950;
}

/* Logo color in section two */
body.scroll-section-two .logo svg path:not(:first-child) {
    fill: #380131;
}

/* Logo color in section three (same as section two) */
body.scroll-section-three .logo svg path:not(:first-child) {
    fill: #380131;
}

/* Section 2 - Mobile hamburger and search colors */
body.scroll-section-two .mobile-search-icon svg {
    color: #380131;
}

/* Hamburger uses nav-separator color (#FD4950) in section 2 */
body.scroll-section-two .hamburger-icon {
    color: #FD4950;
}

body.scroll-section-two .mobile-hamburger-box {
    border-left-color: #FD4950;
}

/* Section 3 - Mobile hamburger and search colors */
body.scroll-section-three .mobile-search-icon svg {
    color: #380131;
}

/* Hamburger uses nav-separator color (#FD4950) in section 3 */
body.scroll-section-three .hamburger-icon {
    color: #FD4950;
}

body.scroll-section-three .mobile-hamburger-box {
    border-left-color: #FD4950;
}

/* Background image for first section */
.section-one {
    background-image: url('../../assets/img/indexBg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}