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

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.navbar {
    width: 100%;
    padding: 5px 40px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h3 {
    font-size: 22px;
    color: #FE7072;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #FE7072;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 61px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        text-align: center;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-links li {
        padding: 15px 0;
    }
}

/* Slide down animation for menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger animation (to X) */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */

.hero {
    width: 100%;
    margin-top: 60px;
    height: 100vh;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-content button {
    background-color: #FE7072;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-content button:hover {
    background-color: #cc5153;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* About */

#about {
    padding: 60px 10%;
    background-color: #fff;
}

.about-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

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

/* Text styling */
.about-text {
    flex: 1 1 45%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text h3 {
    margin-bottom: 15px;
    color: #222;
}

/* Image styling */
.about-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ✅ Responsive fixes */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        flex: 1 1 100%;
        font-size: 1rem;
    }

    .about-image {
        flex: 1 1 100%;
    }

    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 40px 6%;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-image img {
        max-width: 300px;
    }
}


/* Explore Section */
#explore {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
}

.explore-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

/* NEW: Wrapper that holds arrows + slider */
.explore-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}

.explore-container {
    max-width: 900px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.33%;
    display: flex;
    justify-content: center;
}

.slide img {
    width: 80%;
}

/* Buttons now placed in flow */
.nav-btn {
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 12px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #FE7072;
    color: white;
}

.nav-btn .material-symbols-rounded {
    font-size: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .explore-nav {
        flex-direction: column;
    }

    .nav-btn {
        display: none;
    }

    .slide {
        min-width: 80%;
    }

    .slide img {
        width: 90%;
    }

    .slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slide {
        scroll-snap-align: center;
    }
}

/* Download Section */
#download {
    background: #fff;
    text-align: center;
    padding: 80px 10%;
}

.download-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Phone images */
.download-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.download-images img {
    width: 200px;
    transition: transform 0.4s ease;
}

.download-images img:hover {
    transform: translateY(-10px);
}

/* Store buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.store-btn img {
    height: 55px;
    width: auto;
    display: block;
}

.store-btn:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {

    .download-heading {
        font-size: 2.0rem;
        margin-bottom: 40px;
        color: #333;
    }

    .download-images img {
        width: 150px;
    }

    .store-btn img {
        height: 50px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
#footer {
    background-color: #f8f8f8;
    padding: 20px 10%;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #555;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FE7072;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal .close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
