@charset "utf-8";
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* Header */
header {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
}

header h1 {
    font-size: 2rem;
    color: #7bb6e0; /* pale blue */
}

/* Navigation Bar */
nav {
    width: 100%;
    background: linear-gradient(to right, #d8a3b3 0%, #d8a3b3 50%, #7bb6e0 50%, #7bb6e0 100%);
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.7;
}

nav {
    width: 100%;
    background: linear-gradient(to right, #d8a3b3 0%, #d8a3b3 50%, #7bb6e0 50%, #7bb6e0 100%);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.7;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
}

.hero-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
	background: rgba(0,0,0,0.4);
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 1.5rem;
	background-color: #FF99FF;
}

/* 3 Column Section */
.columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 250px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #f8f8f8;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #7bb6e0;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

form button:hover {
    background: #5a9cc7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 200px;
    }

    .hero-text {
        font-size: 1.2rem;
    }
}
/* CSS Document */
