/* 
   Main Stylesheet for Hotel Taj Palace
   Author: AI Developer
   Version: 1.0
*/

/* ===============================
   Base Styles and Typography
   =============================== */

:root {
    /* Color Variables */
    --primary-color: #c9a35c;
    --secondary-color: #1c3c6b;
    --text-color: #333;
    --light-text: #777;
    --white: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #222;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(255, 255, 255, 0.8);
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --element-margin: 20px;

    --black: #000000;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-darker: 0 15px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* No scroll class for when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.3;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===============================
   Utilities and Helper Classes
   =============================== */

.section-title {
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.separator {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.separator.center {
    margin: 0 auto 20px;
}

.section-title.centered {
    text-align: center;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===============================
   Header Styles
   =============================== */

header {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-top {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info div {
    padding-right: 15px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.nav-container {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    display: inline-block;
}

.nav-menu li a:hover, 
.nav-menu li.active a {
    color: var(--primary-color);
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    font-weight: 400;
    border-left: 3px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu li a:hover,
.dropdown-menu li.active a {
    background-color: rgba(201, 163, 92, 0.1);
    border-left-color: var(--primary-color);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

/* ===============================
   Hero Section
   =============================== */

.hero {
    height: 600px;
    background-image: url('https://pixabay.com/get/g44294e89f2ce9465f4c892d1c9db8d9f65e95d392230cfdf5f736af93599a5457680f5e57068951027743756e1755e232591d676fb71aeaa208c5249b9577988_1280.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* ===============================
   Welcome Section
   =============================== */

.welcome {
    padding: var(--section-padding);
    background-color: var(--white);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.welcome-text, .welcome-image {
    flex: 1;
}

.welcome-text p {
    margin-bottom: 25px;
    color: var(--light-text);
    font-size: 18px;
}

.welcome-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Rooms Section
   =============================== */

.rooms {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.room-info p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 15px;
}

/* Room Features for Reservation Page */
.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.room-features span {
    font-size: 14px;
    color: var(--light-text);
}

.room-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.room-price {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--light-text);
}

.price {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===============================
   Facilities Section
   =============================== */

.facilities {
    padding: var(--section-padding);
    background-color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.facility-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.facility-item p {
    color: var(--light-text);
    font-size: 15px;
}

/* ===============================
   Testimonials Section
   =============================== */

.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.guest-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-info h4 {
    margin: 0;
    font-size: 18px;
}

.rating {
    color: var(--primary-color);
}

/* ===============================
   CTA Section
   =============================== */

.cta {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 36px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   Footer
   =============================== */

footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.contact-details i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   Page Header
   =============================== */

.page-header {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ===============================
   About Page Styles
   =============================== */

.about-intro {
    padding: var(--section-padding);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image, .about-text {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-box, .vision-box {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.values {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    color: var(--light-text);
    font-size: 15px;
}

.hotel-features {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.gallery {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===============================
   Contact Page Styles
   =============================== */

.contact-info-section {
    padding: var(--section-padding);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 10px;
}

.contact-form-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-image, .contact-form {
    flex: 1;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(201, 163, 92, 0.1);
}

.map-section {
    padding: var(--section-padding);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--light-text);
}

/* ===============================
   Reservation Page Styles
   =============================== */

.booking-intro {
    padding: 60px 0;
}

.reservation-rooms {
    margin-bottom: 60px;
}

.booking-form {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.reservation-policy {
    padding: var(--section-padding);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-item {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.policy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.policy-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-item p {
    color: var(--light-text);
}

/* ===============================
   Cancel Reservation Page Styles
   =============================== */

.cancel-intro {
    padding: 60px 0;
}

.cancellation-policy {
    padding: 0 0 60px;
}

.policy-box {
    background-color: #fff8ec;
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 5px;
}

.policy-box h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-box h3 i {
    margin-right: 10px;
}

.policy-box ul {
    list-style: disc;
    padding-left: 20px;
}

.policy-box ul li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.cancellation-form {
    padding: 0 0 80px;
}

.confirmation-check {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.confirmation-check input {
    margin-right: 10px;
    margin-top: 6px;
}

.confirmation-check label {
    color: var(--light-text);
    font-size: 15px;
}

.alternative-options {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.option-card:hover {
    transform: translateY(-10px);
}

.option-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.option-card h3 {
    margin-bottom: 15px;
}

.option-card p {
    color: var(--light-text);
    margin-bottom: 25px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.preloader-tagline {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-bg);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.preloader-spinner {
    margin-bottom: 30px;
}

.loading-wave {
    display: flex;
    justify-content: center;
}

.loading-bar {
    width: 4px;
    height: 30px;
    margin: 0 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.loading-bar:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes loading-wave-animation {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.4);
    }
    100% {
        transform: scaleY(1);
    }
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background-color: var(--gray-light);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
