


/* Styling for all pages : */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f6e9dc;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #E6CBB5;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    color: #5a2e1f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: fill;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #7a5a4a;
    font-weight: 500;
}

.nav-links .active {
    border-bottom: 3px solid #8b4e2e;
    padding-bottom: 5px;
}


/* Footer */
.footer {
    margin-top: 30px;
    background: #e6cbb5;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    color: #5a2e1f;
    font-size: 14px;
}

/* ---------------------------------------------------------------- */
/* Home page */

/* Hero Section*/
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 20px;
    overflow: hidden;
}

.hero-text {
    width: 45%;
}

.hero-text h3 {
    color: #9c6b4f;
    font-size: 28px;
}

.hero-text h1 {
    font-size: 64px;
    color: #5a2e1f;
    margin: 10px 0;
}

.main-text {
    font-weight: bold;
    margin-top: 20px;
    color: #5a2e1f;
}

.sub-text {
    margin-top: 10px;
    color: #7a5a4a;
}

.hero-text button {
    margin-top: 25px;
    padding: 14px 30px;
    background: #8b4e2e;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Image */
.hero-image {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 125%;
    transform: translateX(40px);
}

/* ---------------------------------------------------------------- */

/* Services Page */
.services {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 80px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f3e3d6;
    padding: 30px;
    border-radius: 25px;
    border: 2px dashed #d6a889;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.card-image img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.card-content h3 {
    margin: 10px 0;
    color: #5a2e1f;
}

.card-content p {
    color: #7a5a4a;
}

.tag {
    background: #a66a3f;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}


/* for a Responsive web */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }

    .hero-text {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }

    .hero-image img {
        width: 100%;
        transform: none;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card.reverse {
        flex-direction: column;
    }
}

/* ---------------------------------------------------------------- */
/* Feedback Page */

/* Form container */
.form-container {
    width: 55%;
    margin: 60px auto;
    background: #fff6ef;
    padding: 35px;
    border-radius: 25px;
}

/* Title */
.form-container h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #5a2e1f;
}

/* Labels */
form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #5a2e1f;
    font-weight: bold;
}

/* Inputs */
form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d8b49c;
    background: #fff;
    outline: none;
}

/* Textarea */
textarea {
    min-height: 100px;
    resize: none;
}

/* Groups */
.radio-group,
.check-group {
    margin-top: 10px;
}

/* Options */
.option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}

/* Custom radio/checkbox */
.option input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #4b2e2e;
    border-radius: 50%;
    cursor: pointer;
}

/* Checked */
.option input:checked {
    background: #4b2e2e;
}

/* Button */
form button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background: #8b4e2e;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

/* ---------------------------------------------------------------- */
/* Video Page */

.hero-video {
    width: 55%;
    display: flex;
    justify-content: center;
}

.hero-video video {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

/* ---------------------------------------------------------------- */
/* Schedule Page */

/* Title */
.schedule-title {
    text-align: center;
    padding: 40px 20px;
}
.schedule-title h1 {
    font-size: 40px;
    color: #5a3b2e;
    margin-bottom: 10px;
}

.schedule-title p {
    font-size: 18px;
    color: #c89b84;
    margin: 0;
}


.schedule-container {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Table */
.schedule-table {
    width: 90%;
    border-collapse: collapse;
    background: #fffaf7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Header */
.schedule-table thead th {
    padding: 16px;
    background: #ffe7dc;
    color: #5a3b2e;
    border: 1px solid #f3cbb8;
    font-weight: bold;
    text-align: center;
}

/* Cells */
.schedule-table td {
    padding: 16px;
    border: 1px solid #f3cbb8;
    text-align: center;
    color: #4a3a33;
    transition: all 0.2s ease;
}

/* styling the First column (Days) */
.schedule-table td:first-child {
    font-weight: bold;
    text-align: left;
    background: #fff3ec;
    color: #5a3b2e;
}

/* Hover Effect */
.schedule-table tbody tr td {
    cursor: pointer;
}

.schedule-table tbody tr:hover td {
    background: #ffeadd;
    transform: scale(1.02);
}

/* row animation */
.schedule-table td {
    transition: 0.25s ease;
}

/* Rows base */
.schedule-table tbody tr:nth-child(odd) {
    background: #fffaf7;
}


.schedule-table tbody tr:nth-child(even) {
    background: #ffece3;
    /* so that the style will be light row followed by a dark row  */

}

/* Hover */
.schedule-table tbody tr:hover {
    background: #ffd8c7;
    transition: 0.2s ease;
}

