/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fdf6ff;
    color: #333;
    line-height: 1.6;
}

/* Header */
.main-header {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    padding: 12px 30px;
    border: none;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: linear-gradient(to right, #ffa600, #ff416c);
}

/* Sections */
section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #5e548e;
    font-weight: 600;
}

h3 {
    margin: 10px 0;
    color: #d6336c;
}

.info-text {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 18px;
}

/* Cards & Listings */
.dashboard-cards,
.rooms,
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.dashboard-card,
.room-card,
.step {
    background: linear-gradient(to bottom right, #e0c3fc, #8ec5fc);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.dashboard-card:hover,
.room-card:hover,
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.room-card img,
.step img {
    max-width: 100%;
    border-radius: 10px;
}

.rooms .room-card p {
    margin: 10px 0;
    color: #555;
}

/* Forms */
.login-form,
.signup-form,
.add-room-form,
.search-form,
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(to right, #fc6076, #ff9a44);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.login-form h2,
.signup-form h2,
.add-room-section h2,
.contact-section h2,
.search-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.login-form input,
.signup-form input,
.add-room-form input,
.add-room-form select,
.add-room-form textarea,
.search-form input,
.search-form select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    transition: 0.3s;
}

.login-form input:focus,
.signup-form input:focus,
.add-room-form input:focus,
.add-room-form select:focus,
.add-room-form textarea:focus,
.search-form input:focus,
.search-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid #6a11cb;
    background-color: #fff;
}

.signup-link,
.login-link {
    text-align: center;
    margin-top: 10px;
}

.signup-link a,
.login-link a {
    color: #6a11cb;
    text-decoration: none;
}

.signup-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

/* Contact Page Layout */
.contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-form {
    flex: 1 1 300px;
}

.contact-details {
    flex: 1 1 300px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-details h3 {
    margin-bottom: 10px;
}

.contact-details p {
    margin: 8px 0;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
