/*Main Page*/

/* Consistent background for all pages */
body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Translucent backgrounds for main sections */
.container, header, nav, footer, section {
    background: rgba(255,255,255,0.82);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Container padding */
.container {
    padding: 2rem;
}

/* Header, nav, footer spacing */
header, nav, footer {
    margin-bottom: 1.5rem;
}

/* Typography styling */
h1, h2, h3, p, a, label {
    color: #222 !important;
    text-shadow: 0 1px 8px #fff8;
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.logo-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ffb347 80%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.13);
}
.logo-letter {
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 1px;
}
nav {
    background: #1a2533;
    padding: 0.5rem 0;
    text-align: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffb347;
}
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.services {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    padding: 1.5rem;
    width: 260px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}
.card h2 {
    margin-top: 0;
    color: #2d3e50;
}
.card p {
    color: #555;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #eaeaea;
    color: #888;
    margin-top: 2rem;
}

/*Consistent Styles*/

/* Consistent background for all pages */
body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Translucent backgrounds for main sections */
.container, header, nav, footer, section {
    background: rgba(255,255,255,0.82);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Container padding */
.container {
    padding: 2rem;
}

/* Header, nav, footer spacing */
header, nav, footer {
    margin-bottom: 1.5rem;
}

/* Typography styling */
h1, h2, h3, p, a, label {
    color: #222 !important;
    text-shadow: 0 1px 8px #fff8;
}

/* Profile photo styling */
.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
th, td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
}
th {
    background: #f5f5f5;
}


/* Invitation Form */

.invitation-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
}

.invitation-form div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.invitation-form label {
    font-weight: 500;
    padding-left: 2px;
}

.invitation-form input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.invitation-form button {
    margin-top: 12px;
    padding: 12px 0;
    background: #B59410;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.invitation-form button:hover {
    background: #8c730c;
}

/*Login Form*/

.login-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
}

.login-form div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-form label {
    font-weight: 500;
    padding-left: 2px;
}

.login-form input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.login-form button {
    margin-top: 12px;
    padding: 12px 0;
    background: #B59410;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-form button:hover {
    background: #8c730c;
}