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

/* Header Styles */
header {
    background-color: #000;
    color: #ffd700;  /* Gold */
    padding: 20px;
    text-align: center;
}

.hero-header {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Navigation Styles */
nav {
    background-color: #000;
    color: #ffd700;  /* Gold */
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section Styles */
.hero {
    padding: 50px;
    background-color: #000;
    color: #ffd700;
    text-align: center;
}

.hero h2 {
    font-size: 30px;
}

.hero p {
    font-size: 18px;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700; /* Gold */
    color: #000; /* Black text */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e6c300; /* Darker gold on hover */
}

/* Logo Styles */
.logo-container {
    display: inline-block;
}

.logo {
    width: 100px;
}

/* Section Styles for Offers, About, Services, etc. */
section {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
    color: #000;
}

section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

section p {
    font-size: 16px;
    color: #000;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    .hero-header {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .logo {
        width: 80px; /* Adjust logo size for mobile */
    }

    .btn {
        padding: 8px 16px; /* Smaller button on mobile */
        font-size: 14px;
    }
}
