/*
Theme Name: Gowilds
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>GoWilds Travel</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>

<!-- Header -->
<header>
    <div class="container">
        <h1 class="logo">GoWilds</h1>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">Tours</a></li>
                <li><a href="#">Destinations</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </div>
</header>

<!-- Hero Section -->
<section class="hero">
    <div class="hero-content">
        <h2>Explore The World With GoWilds</h2>
        <p>Discover amazing places with exclusive travel deals.</p>
        <a href="#" class="btn">Start Exploring</a>
    </div>
</section>

<!-- Popular Tours -->
<section class="tours">
    <h2>Popular Tours</h2>
    <div class="tour-grid">

        <div class="tour-card">
            <img src="tour1.jpg" alt="Tour">
            <h3>Mountain Adventure</h3>
            <p>7 Days Trip</p>
            <span>$799</span>
        </div>

        <div class="tour-card">
            <img src="tour2.jpg" alt="Tour">
            <h3>Beach Paradise</h3>
            <p>5 Days Trip</p>
            <span>$599</span>
        </div>

        <div class="tour-card">
            <img src="tour3.jpg" alt="Tour">
            <h3>Desert Safari</h3>
            <p>3 Days Trip</p>
            <span>$399</span>
        </div>

    </div>
</section>

<!-- About Section -->
<section class="about">
    <div class="container">
        <h2>Why Choose GoWilds</h2>
        <p>
            We provide the best travel experiences with professional guides,
            unique destinations, and unforgettable adventures.
        </p>
    </div>
</section>

<!-- Footer -->
<footer>
    <p>© 2026 GoWilds Travel. All Rights Reserved.</p>
</footer>

</body>
</html>
}

