@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* elegant gradient */
    color: #f5f5f5;
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #f5f5f5; /* light color for contrast */
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: none;
}

header {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* elegant gradient */
    color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* elegant gradient */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #ffdd57;
    transform: scale(1.1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

section {
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    background: rgba(44, 62, 80, 0.8); /* semi-transparent dark background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
}

section p {
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

button {
    background: linear-gradient(to right, #4ca1af, #2c3e50);
    color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

button:hover {
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    transform: scale(1.05);
}

footer {
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    color: #f5f5f5;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
    position: relative;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.contact-info {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* match elegant gradient */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: #f5f5f5; /* match text color */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    color: #f5f5f5; /* match text color */
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-info a {
    color: #f5f5f5; /* match text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffdd57; /* hover effect */
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form label {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    margin-top: 5px;
    padding: 12px;
    border: 1px solid #4ca1af; /* match elegant color */
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    background-color: rgba(44, 62, 80, 0.8); /* semi-transparent dark background */
    color: #f5f5f5; /* match text color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2c3e50; /* focus color */
}

.contact-form textarea {
    margin-top: 5px;
    padding: 12px;
    border: 1px solid #2c3e50; /* refined border color */
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    background-color: #2c3e50; /* consistent dark blue */
    color: #f5f5f5; /* light text color for contrast */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form textarea:focus {
    border-color: #4ca1af; /* focus color */
}

.contact-form button {
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Follow Us Section */
.follow-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.follow-us a {
    margin: 0 15px;
    font-size: 3em; /* larger icons */
    color: #ff6347; /* new color for icons */
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.follow-us a:hover {
    transform: scale(1.2);
    color: #ffdd57;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
} 