/* General Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  * {
    margin: 0;
  }
  
  body {   
    line-height: 1.5;   
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif; /* Fixed typo in "sans-serif" */
  }
  
  picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  p {
    text-wrap: pretty;
  }
  
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  
  #root, #__next {
    isolation: isolate;
  }
  
  .bg-dark {
    background-color: #000 !important;
  }
  
  /* End CSS Reset */
  
/* Custom Styles */

/* scroll bar */
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #FFC107;
    border-radius: 10px !important;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #AE8625; 
  }

  body {    
    font-family: "Source Sans 3", serif;
}

.navbar {
    background-color: #0d3b5f;
    padding: 15px 20px;
}

.navbar-nav{
    display:flex;
    justify-content: space-between;    
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #b08d30);
    color: #212121;
    border: none;
    padding: 8px 15px;
    border-radius: 0 !important;
    font-weight: 600;
    transition: background-position .3s;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #b08d30, #d4af37);
    color: #212121;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .btn-gold {
        margin-top: 10px;
    }
}

 /* Custom Styles */
 .banner {
    position: relative;
    background: url('../images/banner.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    padding: 1rem;
    z-index: 2;
    max-width: 700px;
/* From https://css.glass */
background: rgba(0, 0, 0, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(0, 0, 0, 0.3);
}

.banner-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #EDC967;
}

.banner-content p {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 400 !important;
}

.banner-content .btn {
    background-color: #FFC107;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2rem !important;
    padding: 10px 20px;
    border: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.banner-content .btn:hover {
    background-color: #FFC107;
    color: #fff;
    box-shadow: 0 0 3px 3px rgba(249, 199, 79, 0.6);
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

 /* Search Section Styles */
 /* Search Section Styles */
.search-section {
    background-color: #af8e32;
    padding: 50px 0;
    color: #fff;
}

.search-section .search-box {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.search-section .search-box button {
    background-color: #212121;
    border: 1px solid #484848;
    color: #fff;
    border: none;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 10px 20px;
    white-space: nowrap;
}

.search-section .search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .search-section .search-box {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        padding: 0 20px;
    }

    .search-section .search-box input {
        margin-bottom: 10px;
        border-radius: 5px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .search-section .search-box button {
        border-radius: 5px;
        border-top-left-radius: 0.5rem;
        border-bottom-left-radius: 0.5rem;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 30px 0;
    }

    .search-section .search-box input {
        font-size: 14px;
        padding: 8px;
    }

    .search-section .search-box button {
        padding: 8px 15px;
        font-size: 14px;
    }
}


/* signup section */
.signup .text-warning{
    color: #EDC967 !important;
}

.signup p{
    font-size: 1.5rem !important;
}

.signup .btn-warning{
    padding: 0.75rem 2.5rem;
    color: #FFF !important;
    font-weight: 500 !important;
}

 .btn-outline-warning{
    padding: 0.75rem 2.5rem;
    border: 1px solid #FFC107;
    color: #FFc107 !important;
    font-weight: 500 !important;
}

.btn-outline-warning:hover{
    padding: 0.75rem 2.5rem;
    background-color:  #FFC107;
    color: #FFF !important;
    font-weight: 500 !important;
}

/* Analytics */

.bg-dark {
    background-color: #2d2d2d !important;
}

.analytics .btn-warning , .yourevents .btn-warning{
    padding: 0.75rem 2.5rem;
    color: #FFF !important;
    font-weight: 500 !important;
}

.analytics h1{
    font-size: 3rem !important;
    color: #1C3D5A;
}

.analytics p ,.yourevents p{
    font-size: 1.25rem !important;
}

.bg-blue{
    background-color: #0D2843;
}

.bg-dark:has(.yourevents){
    background-color: #000 !important;
}

.bg-darkblue{
    background-color: #0A2540;
}


/* What You Love Section */
.whatyoulove {
    display: flex;
    align-items: stretch;
    background-color: #FFF;
    border-radius: 1rem;
    overflow: hidden;
    padding: 20px;
}

.whatyoulove img {
    flex: 1;
    object-fit: cover;
    max-width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.whatyoulove h1 {
    font-size: 3rem;
    color: #1C3D5A;
    margin-bottom: 1rem;
}

.whatyoulove p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.whatyoulove .column {
    flex-basis: 50%;
    padding: 20px;
}

.whatyoulove .btn-warning {
    padding: 0.75rem 2.5rem;
    color: #FFF;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.whatyoulove .btn-warning:hover {
    background-color: #FFC107;
    color: #FFF;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) { /* Tablet and smaller devices */
    .whatyoulove {
        flex-direction: column;
        padding: 20px;
    }

    .whatyoulove img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 0;
    }

    .whatyoulove h1 {
        font-size: 2.5rem;
    }

    .whatyoulove p {
        font-size: 1.15rem;
    }

    .whatyoulove .btn-warning {
        padding: 0.6rem 2rem;
    }

    .endless .col-md-5, .whatyoulove .col-md-5{
        order:1 !important;
        width:100%;
    }

    .endless .col-md-7, .whatyoulove .col-md-7{        
        width:100%;
    }
}

@media (max-width: 768px) { /* Mobile devices */
    .whatyoulove {
        padding: 15px;
    }

    .whatyoulove img {
        width: 100%;
    }

    .whatyoulove h1 {
        font-size: 2rem;
    }

    .whatyoulove p {
        font-size: 1rem;
    }

    .whatyoulove .btn-warning {
        padding: 0.5rem 1.5rem;
    }

    .analytics ,.yourevents{
        padding-top: 2rem;
        padding-bottom: 2rem;
        border: none !important;
    }
}

@media (max-width: 576px) { /* Small mobile devices */
    .whatyoulove h1 {
        font-size: 1.8rem;
    }

    .whatyoulove p {
        font-size: 0.9rem;
    }

    .whatyoulove img {
        width: 100%;
    }

    .whatyoulove .btn-warning {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .endless ,.whatyoulove{
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .analytics .btn-warning, .yourevents .btn-warning{
        margin-bottom: 1rem !important;
    }

    .endless .col-md-5, .whatyoulove .col-md-5 {
        order: 1 !important;
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .store-buttons{
        justify-content: center !important;
    }
}

.endless .text-warning{
    color: #AE8625 !important;
}

.text-warning{
    color: #EDC967 !important;
}

.bg-primary {
    background-color: #33475b !important;
}

h1 {
    font-size: 2rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .app-section {
        padding-top: 2rem;
        padding-bottom: 2rem;                
    }
}

 /* App Section Styles */
 .app-section {
    background: linear-gradient(to right, #ffffff, #f7f7f7);
    padding: 0px 50px 0px 50px;
    background: url(../images/promotion-bg.png);
    background-size: 100% 100%;
}

@media (max-width: 600px) {
    .app-section .d-flex {
        display: block !important;      
    }

  .app-section .store-buttons {
        display: flex !important;
    }

    .app-section .store-buttons a{
        width:100% !important;
    }
}

.app-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.app-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-section .store-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border: 2px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    height: 75px !important;
    width: 200px !important;
}

.app-section .store-buttons a:hover {
    background-color: #FFC107;
    color: #fff;
}

.app-section .app-images img {
    max-width: 100%;
}

.store-buttons img{
    width:32px;
    height:32px;
}

.store-buttons small{
    font-size: 0.925rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .app-section{
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .app-section .app-images img {
        max-width: 100%;
        top: 6.8rem;
        position: relative;
    }
    
}

@media (max-width: 992px) {
    .app-section{
        padding-top: 2rem !important;
    }

    .app-section h2 {
        font-size: 2rem;
    }

    .app-section p {
        font-size: 1rem;
    }

    .app-section .store-buttons a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .app-section .signup-btn {
        padding: 8px 20px;
        font-size: 1rem;
    }

    .app-section .app-images img {
        max-width: 100%;
        top: 9.7rem;
        position: relative;
    }
}

@media (max-width: 768px) {
    .app-section .qr-code {
        margin-bottom: 20px;
    }

    .app-section .d-flex {
        display: block !important;      
    }

    .app-section a{
        min-height: 6rem !important;
    }

    .app-section .store-buttons {
        flex-direction: column;
    }

    .app-section .store-buttons a {
        width: 100%;
        justify-content: center;
    }
   

    .app-section .app-images img {
        max-width: 100%;
        top: 2rem;
        position: relative;
    }
}

@media (max-width: 576px) {
    .app-section {
        text-align: center;
        padding-top: 2rem;        
    }

    .app-section h2 {
        font-size: 1.8rem;
    }

    .app-section p {
        font-size: 0.9rem;
    }

    .app-section .store-buttons img {
        width: 30px;
    }
}


.signup-btn {
    border: 2px solid #000;
    background: none;
    padding: 10px 34px;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

.signup-btn:hover {
    background-color: #FFC107;
    border:1px solid #000 !important;
    color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Styles */
.footer {
    background-color: #1C3D5A;
    padding: 0;
    font-size: 14px;
    color: #FFF;
}

.footer .footer-top {
    background-size: contain;
    padding: 40px 0 0;
}

.footer .footer-info {
    margin-bottom: 30px;
}

.footer .footer-info .logo img {
    max-height: 56px;
    margin-right: 6px;
}

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    color: #012970;
    font-family: "Roboto", sans-serif;
    margin-top: 3px;
}

.footer .footer-info h1,
.footer .footer-info p {
    color: #FFF;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: #EDEDED;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    transition: color 0.3s;
}

.footer .footer-links ul a:hover {
    color: #FFC107;
}

.yellow{
    color: #EDC967 !important;
}

.footer .footer-links i {
    color: #000;
    font-size: 1rem;
    padding-right: 2px;
}

.footer .social-links a {
    font-size: 24px;
    margin-right: 1.4rem;
    background: linear-gradient(45deg, #d4af37, #b08d30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: linear-gradient(45deg, #b08d30, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer h4 {
    font-size: 20px;
    font-weight: 600;
    color: #EDEDED;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

.footer-contact h4{
    font-size: 18px !important;
}

.footer h4 span i {
    background: linear-gradient(45deg, #d4af37, #b08d30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    color: #EDEDED;
}

.footer .footer-contact p {
    font-size: 1rem;
    color: #000;
    line-height: 1.5;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #FFF;
}

.footer .credits {
    text-align: center;
    font-size: 13px;
    padding-top: 10px;
    color: #000;
}

.footer-bottom {
    background-color: #0A2540;
}

/* Utility Classes */
.colored {
    font-weight: 700;
    color: #EDC967;
    font-family: "Open Sans", sans-serif;
}

.colored-lg {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EDC967;
}

.vertical-links > li {
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
}

.vertical-links > li > a {
    color: white;
}

/* Hover and Zoom Effects */
.zoom {
    transition: transform 0.2s;
}

.zoom:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

@media (max-width: 600px) {
    .footer-contact {
        text-align: start;
    }
}

/* Additional General Styles */
ul {
    list-style: none;
}

ul > li > a {
    color: #FFF;
    text-decoration: none;
    line-height: 1.8;
}

ul > li > a:hover {
    color: #242529;
    font-weight: 500;
}
