body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #f0f7f4;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

.snail {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.08;
    z-index: 0;
}

.hero-image .snail-1 { top: 10%; left: 5%; transform: rotate(-25deg); opacity: 0.2; }
.hero-image .snail-2 { bottom: 10%; right: 5%; transform: rotate(25deg); opacity: 0.2; }
.snail-3 { bottom: 15%; left: 5%; transform: rotate(15deg); }
.snail-4 { bottom: 5%; right: 5%; transform: rotate(-15deg); }
.snail-5 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(10deg); width: 150px; height: 150px;}
.snail-6 { top: 30%; left: 15%; transform: rotate(35deg); }


.hero-image {
    background-image: linear-gradient(to right, #6a85b6, #bac8e0), url('https://source.unsplash.com/1600x900/?water,science');
    min-height: 30vh;
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    z-index: 1;
}

.logos img {
    height: 40px;
}

.hero-text {
    max-width: 90%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f0f7f4;
}

.container {
    max-width: 95%;
    width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .container {
        width: auto;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-grid > div {
    background-color: #f0f7f4;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #6a85b6;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #6a85b6;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-image: linear-gradient(to right, #6a85b6, #8a9ab8);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-delete {
    background-image: linear-gradient(to right, #e53935, #b71c1c);
    padding: 8px 15px;
    margin-top: 0;
}

.admin-actions {
    margin-bottom: 20px;
    text-align: right;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input[type="text"], .form-group select, .form-group input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.rsvp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.rsvp-table th, .rsvp-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.rsvp-table th {
    background-color: #f0f7f4;
}

#map {
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.calendar-buttons {
    margin-top: 30px;
}

.rsvp-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.rsvp-deadline {
    margin-top: 20px;
    font-style: italic;
}
