/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styles */
body {
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* Container Class to Center Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem;
}

.navbar .logo a {
    color: whitesmoke;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ff5733;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    color: black;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #ff5733;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #c94d1d;
}

/* Main Sections */
main {
    padding: 40px 0;
}

/* Introduction Section */
.intro {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Top Attractions Section */
.top-attractions {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.top-attractions h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 30%;
    transition: transform 0.3s ease;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.card .btn {
    background-color: #ff5733;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card .btn:hover {
    background-color: #c94d1d;
}

/* Why Visit Section */
.why-visit {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.why-visit h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    margin-bottom: 20px;
}

.feature:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #ff5733;
    text-decoration: none;
}

footer a:hover {
    color: #c94d1d;
}
/* Highlights Section Styles */
.highlights {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Add space between items */
    padding: 20px;
    text-align: center;
}

.highlight {
    background-color: #f9f9f9; /* Light background for contrast */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    max-width: 300px; /* Limit the card width */
    flex: 1; /* Allow cards to flex and take equal space */
    margin: 10px;
    overflow: hidden; /* Prevent content overflow */
}

.highlight img {
    width: 100%; /* Make images take full width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensure images are cropped properly */
    border-bottom: 1px solid #ddd; /* Separate image from text */
}

.highlight h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #333;
}

.highlight p {
    font-size: 16px;
    margin: 0 10px 15px;
    color: #555;
}

@media (max-width: 768px) {
    .highlights {
        flex-direction: column; /* Stack cards vertically on smaller screens */
    }

    .highlight {
        max-width: 90%; /* Adjust card width for smaller screens */
    }
}
/* General Page Layout */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Section */
.hero {
    background: url('images/south_africa_banner.jpg') no-repeat center center/cover;
    color: black;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    margin-top: 20px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 15px 30px;
}

.navbar .logo {
    font-size: 1.8em;
    color: #ecf0f1;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.1em;
}

.navbar .nav-links a:hover {
    color: #e74c3c;
}

/* About Section */
main {
    padding: 50px;
    background-color: whitesmoke;
}

.about h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.about ul {
    list-style-type: none;
    padding: 0;
}

.about ul li {
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 10px;
}

.about ul li strong {
    color: #e74c3c;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: whitesmoke;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #e74c3c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .nav-links {
        flex-direction: column;
        margin-top: 20px;
    }

    .navbar .nav-links li {
        margin-left: 0;
        margin-top: 10px;
    }

    main {
        padding: 20px;
    }

    .about h2 {
        font-size: 2em;
    }

    .about p {
        font-size: 1em;
    }

    footer {
        padding: 15px;
    }
}
/* General page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styling */
header.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 80px 20px;
    color: black;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

header .navbar .logo {
    font-size: 24px;
    color: whitesmoke;
}

header .navbar .nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
}

header .navbar .nav-links li {
    margin-left: 20px;
}

header .navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

header .navbar .nav-links a:hover {
    color: #ff9900;
}

/* Hero Section */
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Attractions List Section */
.attractions-list {
    padding: 40px 20px;
    text-align: center;
}

.attractions-list h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Attraction Cards */
.attraction {
    display: inline-block;
    width: 280px;
    margin: 15px;
    background-color: whitesmoke;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.attraction:hover {
    transform: translateY(-10px);
}

.attraction img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.attraction h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #333;
}

.attraction p {
    font-size: 16px;
    padding: 0 15px 15px;
    color: #555;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: whitesmoke;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .attraction {
        width: 100%;
        margin: 15px 0;
    }

    header .navbar {
        flex-direction: column;
    }

    header .navbar .nav-links {
        flex-direction: column;
    }

    header .navbar .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header .hero-content h1 {
        font-size: 28px;
    }

    header .hero-content p {
        font-size: 16px;
    }
}
/* Your original styles go here */

/* New CSS for Attractions Page (Paste Below) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styling */
header.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 80px 20px;
    color: black;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

header .navbar .logo {
    font-size: 24px;
    color: white;
}

header .navbar .nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
}

header .navbar .nav-links li {
    margin-left: 20px;
}

header .navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

header .navbar .nav-links a:hover {
    color: #ff9900;
}

/* Hero Section */
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Attractions List Section */
.attractions-list {
    padding: 40px 20px;
    text-align: center;
}

.attractions-list h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Attraction Cards */
.attraction {
    display: inline-block;
    width: 280px;
    margin: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.attraction:hover {
    transform: translateY(-10px);
}

.attraction img {
    width: 100%;
    height: 200px; /* Fix the height of all images */
    object-fit: cover; /* Ensure the images cover the entire area */
}

.attraction h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #333;
}

.attraction p {
    font-size: 16px;
    padding: 0 15px 15px;
    color: #555;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .attraction {
        width: 100%;
        margin: 15px 0;
    }

    header .navbar {
        flex-direction: column;
    }

    header .navbar .nav-links {
        flex-direction: column;
    }

    header .navbar .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header .hero-content h1 {
        font-size: 28px;
    }

    header .hero-content p {
        font-size: 16px;
    }
}
/* Basic Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: url('images/hero-culture.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

.navbar .logo {
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
}

.navbar .nav-links {
    list-style-type: none;
    padding: 0;
}

.navbar .nav-links li {
    display: inline;
    margin: 0 15px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

/* Content Sections */
section {
    padding: 40px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #005b96;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-container img {
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* Contact Page Styles */

.contact {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact h2 {
    font-size: 2rem;
    color: #2980b9;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact ul li {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact ul li a {
    color: whitesmoke;
    text-decoration: none;
}

.contact ul li a:hover {
    text-decoration: underline;
}

.contact ul li strong {
    font-weight: bold;
    color: #34495e;
}

/* Button Styling for Links */
.contact a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    background-color: #2980b9;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.contact a:hover {
    background-color: #1e6fa8;
}

/* Footer Styling */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}
/* About Page Styles */

/* General Styles */
.about {
    max-width: 800px; /* Keeps the content readable */
    margin: 20px auto; /* Center the section horizontally */
    text-align: left; /* Align text to the left */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.about h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Paragraph Styles */
.about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 15px;
}

/* List Styles */
.about ul {
    list-style: disc inside; /* Bulleted list aligned with the content */
    margin-left: 20px; /* Adds slight indentation */
    padding-left: 0;
}

.about ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

footer a {
    color: orange;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* Existing styles for your images */
.image-placeholder img {
    height: 500px; /* Adjust the height for better visibility */
    width: 50%;    /* Ensure the image spans the full width */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

/* New code for responsive design on smaller screens */

/* Make images responsive for smaller screen sizes */
@media (max-width: 768px) {
    .image-placeholder img {
        width: 100%;  /* Full width for tablet-sized screens */
        height: auto; /* Adjust height automatically to maintain aspect ratio */
    }
}

/* For very small devices (smartphones in portrait mode) */
@media (max-width: 480px) {
    .image-placeholder img {
        width: 100%;  /* Full width on small screens */
        height: auto; /* Maintain aspect ratio */
    }
}













