/*----------------------------------------------------------------------------*/
/*                                BASIC CODE                                  */
/*----------------------------------------------------------------------------*/


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

html, body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    text-align: justify;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    
}


/*-----------------------------------------------------------------------------*/
/*                            REUSABLE COMPONENTS                              */
/*-----------------------------------------------------------------------------*/


.row {
    max-width: 1140px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
}

section {
    padding: 80px 0;
}

.clear-fix:after {
    content: "";
    display: block;
    clear: both;
}


/*---------------HEADING----------------*/

h1, h2, h3 {
    font-weight: 300;
    text-transform: uppercase;  /* To upporcase the text */
    
}

h1 {
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;        /* To specify amount of space between letters */
}

h2 {
    font-size: 180%;  /* Other properties are same with 'h1' so I groupped h1 and h2 for those in the reusable part */
    text-align: center;
    word-spacing: 2px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 2px 2px #fffbfb;
   
}

h2:after {         /* little orange dash will appear after h2 */
    display: block;
    content: "";
    height: 2px;
    width: 100px;
    background-color: #e67e22;
    margin: 30px auto 0 auto;
}

h3 {      
    font-size: 110%;
    margin: 20px 0;
    text-align: center;
}

h3:after {         /* little orange dash will appear after h2 */
    display: block;
    content: "";
    height: 2px;
    width: 20px;
    background-color: #e67e22;
    margin: 10px auto 0 auto;
}

.section-intro {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}



.btns, input[type=submit] {
    display: inline-block;  /* converting the element to inline-block element */
    padding: 10px 30px;     /* now we can add padding and margin */
    text-decoration: none;  /* to remove underline */
    border-radius: 200px;   /*to make roundish left and right side*/
    border: 1px solid #e67e22;
    margin: 0 10px;
    -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
    transition: background-color 0.3s, border 0.3s, color 0.3s;
}

.btn-solid:link, .btn-solid:visited,
input[type=submit] {
    background-color: #e67e22;  /* setting background color of the button btn-solid */
    color: #fff;                /* setting text color of the button btn-solid */
}

.btn-solid:hover, .btn-solid:active,
input[type=submit]:hover, input[type=submit]:active {
    background-color: #cf6d17;
    border: 1px solid #cf6d17;
}

.btn-ghost:link, .btn-ghost:visited {
    background-color: transparent;  /* setting background color as transparent of the button btn-ghost */
    color: #e67e22;                 /* setting text color of the button btn-ghost */
}

.btn-ghost:hover, .btn-ghost:active {
    color: #fff;
    background-color: #e67e22;
}

/* humbuger lines section */

.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
    z-index: 1000; /* Ensure it is above other content */
    position: absolute; /* Position it relative to the header */
    top: 20px; /* Adjust top spacing as needed */    
    right: 20px; /* Align it to the right side */
}

.hamburger-menu .line {
    width: 30px;
    height: 3px;
    background: #7d2525;
    margin: 5px 0;
}



/*---------------ICONS----------------*/


.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #e67e22;
    font-size: 120%;
    margin-right: 10px;
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}



/*------------LOGO ANIMATION------------*/


@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*-----------------------------------------------------------------------------*/
/*                             HEADER COMPONENTS                               */
/*-----------------------------------------------------------------------------*/


header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(images/hero.jpg);
    background-image: linear-gradient(rgba(49, 49, 49, 0.7), rgba(45, 45, 45, 0.7)), url(images/hero.jpg); /* using linear gradient */
    background-size: cover;      /* to see complete image not zoomed */
    background-position: center; /* to center the background */
    height: 100vh;               /* total view port view */
    background-attachment: fixed;  /* for "scroll but fix effect" */
}


/* Hero Text Box Styling */
.hero-text-box {                
    position: absolute;              
    width: 90%;                       /* Adjusted width for responsiveness */
    max-width: 1140px;                /* Maximum width to maintain structure */
    top: 50%;                        
    left: 50%;                       
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);  
    text-align: center;               /* Center the text */
                /* White text for contrast */
    padding: 20px;                    /* Padding for better spacing */
    background: rgba(0, 0, 0, 0.5);   /* Semi-transparent background for readability */
    border-radius: 10px;              /* Rounded corners for a smoother look */
}

.hero-text-box h1 {
    font-weight: 700;                 /* Bold for emphasis */
    font-size: 2.5rem;                /* Scalable font size */
    margin-bottom: 20px;              /* Spacing below the heading */
    line-height: 1.2;                 /* Adjusted line height for readability */
}

.hero-text-box h2 {
    font-weight: 300;                 /* Light font for contrast with h1 */
    font-size: 1.2rem;                /* Scalable font size */
    line-height: 1.6;                 /* Adjusted line height for readability */
    margin-bottom: 30px; 
    text-align: justify;             /* Spacing below the subheading */
}

/* Red color styling */
.hero-text-box .red {
    color: #ff0000;                      /* Red color */
    animation: blipRed 1s infinite;
    font-size: 1.2rem;    /* Blipping animation */
}

/* Green color styling */
.hero-text-box .green {
    color: #00ff00;                      /* Green color */
    animation: blipGreen 1s infinite;    /* Blipping animation */
}

/* Red Blip Animation */
@keyframes blipRed {
    0%, 100% { 
        color: #ff0000;                  /* Start and end with red */
        text-shadow: 0 0 5px #ff0000;    /* LED effect with glow */
    }
    50% { 
        color: #330000;                  /* Dimmer red in the middle of animation */
        text-shadow: none;               /* Remove glow */
    }
}

/* Green Blip Animation */
@keyframes blipGreen {
    0%, 100% { 
        color: #00ff00;                  /* Start and end with green */
        text-shadow: 0 0 5px #00ff00;    /* LED effect with glow */
    }
    50% { 
        color: #003300;                  /* Dimmer green in the middle of animation */
        text-shadow: none;               /* Remove glow */
    }
}

/*---------------NAVIGATION BAR----------------*/

/* NORMAL-NAV */

.logo {
    float: left; 
    height: auto; 
    width: 250px;
    margin-top: 10px;
    -webkit-animation: rotation 0.4s linear 2;
    animation: rotation 0.4s linear 2;
}

.logo-black { 
    display: none; 
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link, .main-nav li a:visited {
    padding: 8px 0;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover, .main-nav li a:active {
    border-bottom: 2px solid #e67e22
}



/* STICKY-NAV */

.sticky-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    font-weight: 300%;
    background-color: rgba(149, 159, 93, 0.98);
    -webkit-box-shadow: 0 2px 2px #a4b33e;
    box-shadow: 0 2px 2px #7d2525;
    z-index: 9999;
}

.sticky-nav .logo { 
    display: none; 
}

.sticky-nav .logo-black { 
    display: block;
    float: left; 
    width: 150px; 
    height: 50px;
    margin: 2px;
    -webkit-animation: rotation 0.4s linear 2;
    animation: rotation 0.4s linear 2;
}

.sticky-nav .main-nav {
    margin-top: 22px;
}

.sticky-nav .main-nav li a:link, 
.sticky-nav .main-nav li a:visited {
    padding-bottom: 16px;
    color: #555;
}


/*-----------------------------------------------------------------------------*/
/*                             FEATURES SECTION                                */
/*-----------------------------------------------------------------------------*/


.section-intro {
    margin-bottom: 4%;
}

.section-box {
    padding: 1%;
}

.feature-icon {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: auto;            /* https://codepen.io/sosuke/pen/Pjoqqp is filter generating website */
    -webkit-filter: invert(67%) sepia(52%) saturate(4748%) hue-rotate(351deg) brightness(90%) contrast(85%);
    filter: invert(67%) sepia(52%) saturate(4748%) hue-rotate(351deg) brightness(90%) contrast(85%);
} 

.feature-info {
    font-size: 90%;
    line-height: 145%;
    text-align: center;
    text-align: justify;
    text-justify: inter-word;
}


/*-----------------------------------------------------------------------------*/
/*                             SHOWCASE SECTION                                */
/*-----------------------------------------------------------------------------*/


.showcase-section {
    padding: 0;
}

.meals-showcase {
    list-style: none;
    width: 100%;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.showcase-image {
    overflow: hidden;
    background-color: #000;
}

 .showcase-image img {
     opacity: 0.7;
     width: 100%;
     height: auto;
     -webkit-transform: scale(1.13);
     transform: scale(1.13);
     -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
     transition: opacity 0.5s, -webkit-transform 0.5s;
     transition: transform 0.5s, opacity 0.5s;
     transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

 .showcase-image img:hover {
     opacity: 1;
     -webkit-transform: scale(1.30);
     transform: scale(1.30);
}


/*-----------------------------------------------------------------------------*/
/*                           HOW IT WORKS SECTION                              */
/*-----------------------------------------------------------------------------*/


.hiw-section {
    background-color: #f4f4f4;
}

.step-box:first-child {
    text-align: right;
    padding-right: 3%;
    margin-top: 30px;
}
.step-box:last-child {
    padding-left: 3%;
    margin-top: 5%;
}

.phone-screen {
    width: 40%;
}

.steps {
    margin-bottom: 12%;
}

.steps div {
    display: inline-block;
    color: #e67e22;
    font-size: 150%;
    border: 2px solid #e67e22;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 7px;
    float: left;
    margin-right: 25px;
   
}

.steps p {
    line-height: 25px;
    text-align: justify;
    text-justify: inter-word;
}

.button-app img {
    height: 50px;
    width: auto;
    margin-right: 2%;
}

.steps:last-of-type {
    margin-bottom: 15%;
}


/*-----------------------------------------------------------------------------*/
/*                              CITIES SECTION                                 */
/*-----------------------------------------------------------------------------*/


.city-image {
    width: 100%;
    height: auto;
}

.city-feature {
    margin-bottom: 10px;
}

.city-feature a {
    color: #e67e22;
    text-decoration: none;
}

.city-feature a:hover {
    color: #555;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}


/*-----------------------------------------------------------------------------*/
/*                           TESTINOMIALS SECTION                              */
/*-----------------------------------------------------------------------------*/


.testimonials-section {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(images/back-customers.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/back-customers.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    margin-top: 40px;
    position: relative;
    
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}

cite {
    display: block;
    margin-top: 25px;
    font-size: 90%;
}

cite img {
    height: 45px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}


/*-----------------------------------------------------------------------------*/
/*                              SIGNUP SECTION                                 */
/*-----------------------------------------------------------------------------*/


.signup-section {
    background-color: #f4f4f4;
}

.signup-box {
    background-color: #fff;
    width: 90%;  /* 90% of the actual col */
    margin: 0 5%; /* we have left 10% so,10/2=5 */
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 5px #ebebeb;
    box-shadow: 5px 5px 5px #ebebeb; /* "box-shadow: x-position y-position blur-amount color;" */
}

.signup-box h3:after {
    height: 0;
}

.signup-box h3 {
    text-align: justify;
    margin-top: 0;
}

.signup-box div {
    padding: 15px;
    border-bottom: 1px solid #ebe7e7;
}

.plan-specifications {
    list-style: none;
}

.plan-price {
    font-size: 300%;
    font-weight: 100;
    color: #e67e22;
}

span {
    font-weight: 300;
    font-size: 20px;
}

.price-per-meal {
    font-size: 80%;
    margin-top: 15px;
}

.plan-specifications li {
    margin-bottom: 10px;
    text-align:left;
    
}

.signup-box div:last-child {
    text-align: center;
    border-bottom: 0 solid #ebe7e7;
}


/*-----------------------------------------------------------------------------*/
/*                             CONTACKT SECTION                                */
/*-----------------------------------------------------------------------------*/

/* General Styling */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Form Section */
.form-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.form-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Columns */
.form-column, .contact-column {
    flex: 1;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.contact-form label {
    font-weight: bold;
    color: #4CAF50;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-form input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Contact Column Styling */
.contact-column h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.contact-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-column .contact-details {
    margin-top: 20px;
}

.contact-column .contact-details p {
    margin: 10px 0;
}

.contact-column .contact-details p strong {
    color: #333;
}

.contact-column .contact-details a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-column .contact-details a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .form-section .row {
        flex-direction: column;
    }
    
    .form-column, .contact-column {
        margin: 0 0 20px;
    }
}



/*-----------------------------------------------------------------------------*/
/*                              FOOTER SECTION                                 */
/*-----------------------------------------------------------------------------*/


footer {
    background-color: #333;
    color: #777;
    font-size: 80%;
    padding: 2% 0;
    
}


footer p {
    text-align: center;
    margin: 15px;
    color: #fff;
}

.left-nav {
    float: left;
}

.right-nav {
    float: right;
}

.text-nav, .icon-nav {
    list-style: none;
}

.text-nav li, .icon-nav li {
    display: inline-block;
    margin: 10px;
}

.text-nav li a, .icon-nav li a {
    text-decoration: none;
    color: #fff;
}

.icon-nav li a {
    font-size: 160%;
}

.ion-social-facebook:hover {
    color: #2f6fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.ion-social-instagram:hover {
  background: -webkit-linear-gradient(blue, purple, red, yellow, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.right-nav .ion-social-twitter:hover {
    color: #2fbfff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.ion-social-googleplus:hover {
    color: #f00;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}


/*-----------------------------------------------------------------------------*/
/*                                ANIMATION                                    */
/*-----------------------------------------------------------------------------*/

.js--wp-1,
.js--wp-2,
.js--wp-3
{
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
    opacity: 1;
}


                                                                               