body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #ff6f20; /* Soft orange */
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fff176; /* Soft yellow */
}

.hero {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 111, 32, 0.7), rgba(255, 111, 32, 0.5)), url('paper.jpg') no-repeat center center/cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1; /* Ensure overlay sits above the background image */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3em; /* Increase font size */
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow for better readability */
}

.hero-content p {
    font-size: 1.5em; /* Increase font size */
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-images img {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-images img.active {
    opacity: 1;
}

.cta-button {
    background: #fff176; /* Soft yellow */
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s;
    border: 2px solid teal; /* Teal border */
}

.cta-button:hover {
    background: #ffca28; /* Slightly darker yellow */
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.5); /* Teal shadow */
}

.subscription-options, .community, .project-gallery {
    padding: 40px 20px;
    text-align: center;
}

.subscription-options h2 {
    font-size: 2em;
    margin: 20px 0;
}

.plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.plan {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    transition: transform 0.3s, border-color 0.3s;
    background-color: #ffccbc; /* Light orange */
    margin: 10px; /* Add margin for spacing */
}

.plan:hover {
    transform: scale(1.05);
    background-color: #ffab91; /* Darker orange */
    border-color: teal; /* Teal border on hover */
}

.community-info {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.gallery-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.gallery-images img {
    width: 30%;
    border-radius: 8px;
    border: 2px solid teal; /* Teal border for gallery images */
}

footer {
    background: #ff6f20; /* Soft orange */
    color: white;
    text-align: center;
    padding: 10px 0;
}
