/* General Styles */
html {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
header {
    background: black;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.nav-container:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


.logo {
    color: white;
    width: 2%;
    height: 2%;
    padding: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.icon a {
    font-size: 18px;
}

/* Hero Sections */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: black;
    color: white;
    padding: 50px;
}

.hero img {
    max-width: 80%;
    height: auto;
}

.hero .buttons {
    margin-top: 20px;
}

.hero .buttons button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 200px;
}

.learn-more {
    background: dodgerblue;
    color: white;
}

.learn-more:hover {
    background: blue;
    color: white;
    cursor: pointer;
}

.buy {
    background: white;
    color: black;
}
.buy:hover {
    background: blue;
    color: white;
    cursor: pointer;
}

/* Second Section */
.hero.second {
    background: linear-gradient(to bottom, #0f0f4c, #ffffff);
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

.watch {
    background: #f5f5f7;
    color: black;
    padding: 60px 20px;
}

.watch h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.watch h2 {
    font-size: 1.8rem;
    color: #333;
}

.watch p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.watch .image-container img {
    width: 200%;
    max-width: 100%;
    height: auto;
    align-items: center;
}

.apple-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}