/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation Bar */
header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    font-size: 1rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Section */
.hero {
    background: url('landscape.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* Button Styles */
.btn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background-color: #444;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about p {
    margin-bottom: 40px;
}

.about img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

/* Collection Section */
.collection {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.collection h2 {
    margin-bottom: 40px;
}

/* Responsive Watch Grid */
.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Watch Item */
.watch-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.watch-item h3 {
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

/* Submit Button */
button[type="submit"] {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
}

/* Watch Details Page */
.watch-details {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.watch-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .watch-info {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Watch Image */
.watch-image {
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Watch Description */
.watch-description {
    max-width: 500px;
    text-align: left;
}

.watch-description ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Download Instructions Section */
.download-section {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.download-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.download-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button Styles */
.download-section .btn {
    background-color: #000;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.download-section .btn:hover {
    background-color: #444;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .about img,
    .watch-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .watch-description {
        text-align: center;
    }
}
