/*
 * Nutri Smoothie Custom Styles
 * Child theme for bootScore
 */

/* Import Raleway and Figtree fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Raleway:wght@900&display=swap');

/* CSS Variables for Brand Colors */
:root {
    --nutri-primary-green: #344527;
    --nutri-primary-red: #ef4525;
    --nutri-light-blue: #d5e2e8;
    --nutri-text-gray: #464646;
}

/* Global Styles */
body {
    font-family: 'Figtree', sans-serif;
    color: #000;
}

p {
	font-size: 18px;
	line-height: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
}

h6 {
	font-weight: 700 !important;
}

/* Navigation Styles */
.navbar {
    background: white;
    padding: 30px 0;
}

.navbar-brand img {
	height: auto;
	max-width: 100px;
    width: 100%;
}

.navbar-nav .nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2.7px;
    color: var(--nutri-primary-green);
	margin: 0 20px;
	text-transform: uppercase;
}

/* Hero Section */
.hero-section {
	background-image: url('/wp-content/themes/nutrismoothie/assets/images/hero-bg.jpg');
    position: relative;
    height: auto;
    overflow: hidden;
    background-size: cover;
    background-position: top left;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--nutri-primary-red);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0;
}

.hero-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 74px;
    line-height: 1.05em;
    color: var(--nutri-primary-green);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.1em;
    color: var(--nutri-primary-red);
    text-transform: uppercase;
}

/* About Section */
.about-section {
    background: var(--nutri-primary-green);
    padding: 100px 0;
    text-align: center;
}

.about-section h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1em;
    color: white;
    margin-bottom: 32px;
}

.about-section p {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.5em;
    color: white;
    max-width: 777px;
    margin: 0 auto 50px;
}

/* Button Styles */
.nutri-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2.7px;
    color: var(--nutri-light-blue);
    background: transparent;
    border: 3px solid var(--nutri-light-blue);
    border-radius: 50%;
    text-decoration: none;
	text-transform: uppercase;
    transition: all 0.3s ease;
}

.nutri-btn.darkgreen {
	background-color: var(--nutri-primary-green);
	border: 3px solid var(--nutri-primary-green);
	color: white;
}

.nutri-btn:hover {
    background: var(--nutri-light-blue);
	border: 3px solid var(--nutri-light-blue);
    color: var(--nutri-primary-green);
}

p.cta-btn {
	margin-top: 2rem !important;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.menu-section h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1em;
    color: var(--nutri-primary-green);
    text-align: center;
    margin-bottom: 40px;
}

/* Fade-up transition styles */
.menu-content {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	display: none;
}

.menu-content.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

/* Smooth appearance for content */
.menu-content.active .row {
	animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
}

.menu-category {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2.7px;
    color: var(--nutri-primary-green);
    text-decoration: none;
    cursor: pointer;
}

.menu-category.active {
    color: var(--nutri-primary-red);
    text-decoration: underline;
}

.menu-column h3, .menu-content h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1em;
    color: var(--nutri-primary-red);
    margin-bottom: 32px;
}

.menu-item {
	display: flex;
}

.menu-item-image {
	margin-right: 20px;
	max-width: 90px;
}

.menu-item-image img {
	border-radius: 300px;
}

.menu-item h4 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--nutri-primary-green);
    margin-bottom: 8px;
}

.menu-item p {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 4px;
}

.menu-item .nutrition {
    color: var(--nutri-text-gray);
}

.gluten-free-badge {
    display: inline-block;
	height: auto;
	margin-left: 10px;
	margin-top: -10px;
	max-width: 125px;
	width: 100%;
}

/* Seasonal Section */
.seasonal-section {
	background-color: var(--nutri-primary-green);
	background-size: 40%; 
	background-position: bottom right;
	background-repeat: no-repeat;
	padding: 0;
    position: relative;
    overflow: hidden;
}

.seasonal-text {
	padding: 100px 0;
}

.seasonal-section h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1em;
    color: white;
    margin-bottom: 20px;
}

.seasonal-section .subtitle {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1em;
    color: white;
    margin-bottom: 35px;
}

.seasonal-section .smaller-subtitle {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1em;
    color: white;
    margin-bottom: 10px;
}

.seasonal-section p {
	font-size: 18px;
	font-family: 'Figtree', sans-serif;
	line-height: 1.4em;
}

.seasonal-section .menu-item h4 {
    color: white;
	line-height: 1.1em;
}

.seasonal-section .menu-item p {
    color: white;
	line-height: 1.5em;
}

.seasonal-section .disclaimer {
    font-family: 'Figtree', sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.3em;
    color: white;
}

/* Interior Page */

#content.interior-page {
	border-bottom: 10px #ef4525 solid;
	padding: 80px 0;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact-section h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 74px;
    line-height: 1.1em;
    color: var(--nutri-primary-red);
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-item h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1em;
    color: var(--nutri-primary-green);
    margin-bottom: 10px;
}

.contact-item p {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.5em;
    color: var(--nutri-primary-green);
}

.contact-item a {
	color: var(--nutri-text-gray);
	text-decoration: none;
}

/* Footer */
.site-footer {
    background: var(--nutri-primary-red);
    padding: 10px 0;
    text-align: center;
}

.site-footer p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    color: white;
    margin: 0;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 0 0;
}

.social-icons.header-icons {
	justify-content: flex-start;
}

.social-icons a {
    width: 60px;
    height: 60px;
    background: var(--nutri-primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: var(--nutri-primary-red);
}

.social-icons i {
    color: white;
    font-size: 28px;
}

.social-icons.header-icons a {
	width: 30px;
    height: 30px;
}

.social-icons.header-icons i {
    font-size: 15px;
}

/* Responsive Styles */

@media (min-width: 992px) {
	.hide-desktop {
		display: none;
	}
}
	
@media (max-width: 991px) {
	.nav-toggler {
	  background-color: var(--nutri-primary-green) !important;
	  border-color: var(--nutri-primary-green) !important;
	}
	.nav-toggler:hover,
	.nav-toggler:focus {
	  background-color: var(--nutri-primary-red) !important;
	  border-color: var(--nutri-primary-red) !important;
	}
	.nav-toggler .fa-bars {
	  color: white !important;
	}
    .navbar {
        padding: 20px;
        min-height: auto;
    }
	.navbar-nav {
		margin-bottom: 35px !important;
	}
	.navbar-nav .nav-link {
		margin: 0;
	}
	.hero-section {
		background-position: top left;
	}
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 36px;
    }
	.hero-content p {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.menu-content .mt-5 {
		margin-top: 0 !important;
	}
    .menu-categories {
        flex-wrap: wrap;
        gap: 30px;
    }
    .contact-info {
        flex-direction: column;
        gap: 40px;
    }
	.contact-item {
		margin-bottom: 15px;
	}
	.contact-item:last-of-type {
		margin-bottom: 0;
	}
	.offcanvas-body p {
		font-size: 15px;
	}
	.offcanvas-body h6 {
		font-size: 15px;
	}
	.social-icons a {
		width: 35px !important;
		height: 35px !important;
	}
	.social-icons i {
		font-size: 18px !important;
	}
}

@media (max-width: 767px) {
	.navbar-brand img {
		max-width: 50px;
	}
	.navbar .container {
        padding: 0 30px;
    }
	.hero-content {
		padding: 80px 20px;
	}
	.about-section, .menu-section, .contact-section {
		padding: 50px 20px;
	}
	.seasonal-section .row > * {
		padding: 50px 30px;
	}
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }
    .hero-subtitle {
        font-size: 28px;
    }
	.mt-5 {
		margin-top: 2rem;
	}
	.menu-categories {
		gap: 20px;
    	margin-bottom: 50px;
	}
	.gluten-free-badge {
		margin-top: -5px;
    	max-width: 100px;
	}
    .about-section h2,
    .menu-section h2,
    .seasonal-section h2 {
        font-size: 36px;
    }
	.menu-column h3 {
		font-size: 28px;
	}
	#content.interior-page {
		padding: 50px 30px 30px 30px;
	}
    .contact-section h2 {
        font-size: 36px;
		margin-bottom: 30px;
    }
	.contact-item p {
    	font-size: 18px;
		line-height: 1.5em;
	}
	.site-footer p {
		font-size: 14px;
	}
}
