* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: FuturaDemiC;
    src: url(../font/FuturaDemiC.otf);
}
@font-face {
    font-family: CadetTest-Bold;
    src: url(../font/CadetTest-Bold.otf);
}
@font-face {
    font-family: CadetTest-Regular;
    src: url(../font/CadetTest-Regular.otf);
}

.flex {
    display: flex;
    column-gap: 20px;
}

title {
    font-family: FuturaDemiC;
}
body {
    font-family: FuturaDemiC;
    line-height: 1.6;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.container {
    /*min-height: 100vh;*/
    background-image: url(../img/background.png);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Cloud background effect */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 15%;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.globe-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: bold;
    color: white;
    line-height: .9;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    background: #000;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 40px;
    font-weight: bold;
    font-family: FuturaDemiC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 53px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 4px solid #000;
}

.store-card, .stars {
    width: 50%;
}

/* Store Card */
.store-card {
    background: white;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    margin-bottom: 3%;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.store-name {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.license {
    font-size: 12px;
    color: #000;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.store-address {
    color: #000;
    margin-bottom: 15px;
}

.store-cta {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.store-cta:hover {
    background: #333;
}

/* Opening Banner */
.opening-banner {
    background: #FFD700;
    border: 2px solid #000;
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: CadetTest-Bold;
    font-weight: bold;
    max-width: 750px;
    margin: 0 auto 15px auto;
}

.opening-banner h3 {
    font-size: 50px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.opening-banner p {
    font-size: 20px;
    font-family: CadetTest-Regular;
    margin: 0;
    padding-top: 0;
    line-height: 1;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-badges img {
    max-width: 100%;
    height: auto;
}

/*Starburst*/
.starburst-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.starburst.flanker {
    padding-top: 10%;
}
.starburst.ender {
    padding-top: 30%;
}

/* Testimonials */
.testimonials {
    background: #FFD700;
    padding: 30px 60px 30px 60px;
    border-radius: 5.516px;
    border: 0.552px solid #000;
    margin-bottom: 40px;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial {
    text-align: center;
}

.testimonial-stars {
    color: #000;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.testimonial-name {
    font-weight: bold;
    color: #000;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

/* Stats Section */
.stats {
    background: #FB3F3F;
    color: white;
    padding: 80px 20px 0px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    border-right: 2px solid white;
    padding-bottom: 20px;
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 18px;
    font-weight: bold;
}

/* Footer */
.bottoms-up {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer {
    background: #000;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-cta {
    background: white;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-family: FuturaDemiC;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/*OWL CAROUSEL*/
.owl-theme .owl-nav {
    position: absolute;
    width: 98%;
    bottom: 50%;
    left: 1%;
}
.owl-carousel .owl-nav button.owl-prev img, .owl-carousel .owl-nav button.owl-next img {
    width: 16px;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    position: absolute;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0;
    position: absolute;
}
.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid black;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: black;
}

/* Responsive Design */
@media (max-width: 992px) {
    .flex {
        display: block;
    }
    .store-card, .stars {
        width: 100%;
    }
    .store-card {
        padding-bottom: 15px;
    }
    .content {
        padding-bottom: 30%;
    }
    .header {
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-image {
        height: 250px;
        background-image: url('../img/em-beach.png');
        background-size: cover;
        background-position: center;
        border-radius: 53px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border: 4px solid #000;
    }
    
    .hero-image img {
        display: none;
    }

    .hero-cta {
        padding: 10px 40px; 
        border-radius: 8px;
        font-size: 40px;
    }

    .feature-badges {
        margin-bottom: 30px;
    }

    /*.testimonial-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial:nth-child(n+3) {
        display: none;
    }*/

    .stats {
       padding: 80px 20px 10px 20px; 
    }

    .stats-grid {
        /*grid-template-columns: repeat(4, 1fr);*/
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
    }

    .stat {
        /*border-right: 2px solid white;
        border-bottom: none;
        padding-bottom: 0;*/
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .stat:last-child {
        border-right: none;
    }

    .stat-text {
        font-size: 11px;
    }

    .stat-number {
        font-size: 18px;
    }

    /* Keep footer horizontal on tablet */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px;
        padding-bottom: 60%;
    }

    .hero {
        display: block;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 70px;
    }

    .hero-image {
        display: none;
    }

    .header {
        justify-content: center;
    }

    .license {
        font-size: 8px;
    }

    .logo-text {
        font-size: 24px;
    }

    .store-name {
        font-size: 30px;
    }

    .opening-banner h3 {
        font-size: 23px;
    }

    .stats-grid {
        /*grid-template-columns: 1fr;*/
    }

    .stat {
        /*border-right: none;
        border-bottom: 2px solid white;
        padding-bottom: 20px;
        margin-bottom: 20px;*/
    }

    .stat:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial:nth-child(n+3) {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Smooth animations */
.hero-cta, .store-cta, .footer-cta, .badge {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-card, .opening-banner, .testimonials {
    animation: fadeInUp 0.6s ease-out;
}