/* Resetting default browser styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9, #e3f2fd);
}

/* Header */
.header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.header span {
    color: #0078d7;
    font-weight: bold;
}

/* Round photo */
.photo-wrapper {
    margin: 20px 0;
}

.round-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0078d7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Card */
.card {
    background: url('restaurant-scenic.jpg') no-repeat center center / cover;
    width: 80%;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    text-align: center;
    color: #333;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1rem;
}

/* Main content */
.main-content {
    margin: 20px 0;
    font-size: 1.2rem;
}

.main-content strong {
    color: #0078d7;
}

.thank-you {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

/* Footer */
.footer {
    margin-top: 30px;
}

.footer p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    color: #0078d7;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff4081;
}

/* Media Queries */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .main-content {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .card {
        width: 90%;
    }

    .round-photo {
        width: 120px;
        height: 120px;
    }
}
