/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8e1; /* Saffron theme background */
    color: #333;
}

h1, h2 {
    font-weight: bold;
    color: #e65100; /* Deep saffron color for headings */
}

a {
    text-decoration: none;
    color: #e65100;
}

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

/* Header Section */
header {
    background-color: #ff9800; /* Saffron color */
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

header .logo img {
    width: 120px;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-image: url('assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#hero .hero-content .cta-btn {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    font-weight: bold;
}

#hero .hero-content .cta-btn:hover {
    background-color: #e64a19;
}

/* Section Styling */
section {
    padding: 60px 30px;
    text-align: center;
}

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

/* Row and Column Setup */
.row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.column {
    flex: 1;
    min-width: 280px;
}

/* Form Styles */
form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #e65100;
    border-radius: 5px;
}

form button {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

form button:hover {
    background-color: #e64a19;
}

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

footer .social-links a {
    margin: 0 10px;
    color: white;
}

footer .social-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    #hero .hero-content h1 {
        font-size: 2rem;
    }

    .row {
        flex-direction: column;
    }

    .column {
        margin-bottom: 20px;
    }
}
