/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caladea&family=Akaya+Kanadaka&display=swap');

/* Contact Page Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Akaya Kanadaka', cursive;
    background-color: #faf7f5;
    color: #171a1f;
    line-height: 1.6;
}

.contact-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Caladea', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #43141e;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Caladea', serif;
    font-size: 1.1rem;
    color: #43141e;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #43141e;
    border-radius: 8px;
    font-family: 'Akaya Kanadaka', cursive;
    font-size: 1rem;
    color: #171a1f;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6a2030;
    box-shadow: 0 0 8px rgba(106, 32, 48, 0.2);
}

.form-control::placeholder {
    color: #565d6d;
    opacity: 0.7;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #43141e;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-family: 'Caladea', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6a2030;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
    color: #565d6d;
    margin: 0.5rem 0;
}

.contact-info a {
    color: #912b41;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #6a2030;
    text-decoration: underline;
}

/* Flash Messages */
.flash-messages {
    margin-top: 1rem;
    width: 100%;
}

.flash-message {
    position: relative;
    padding: 1rem 2rem 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-family: 'Caladea', serif;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.flash-success {
    background: #43141e;
}

.flash-error {
    background: #912b41;
}

.flash-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.flash-close:hover {
    color: #c09b7e;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #faf7f5e3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-menu {
    display: flex;
    gap: 1.5rem;
}

.header-menu-item {
    font-size: 1rem;
    color: #565d6d;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header-menu-item:hover {
    color: #927759;
}

.header-menu-item.selected {
    font-weight: 700;
    color: #927759;
}

.logo img {
    width: 100px;
    height: auto;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 22px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #43141e;
    color: #43141e;
}

.btn-outline:hover {
    background: #6a2030;
    color: #fff;
}

/* Footer Styles */
.footer {
    padding: 2rem 1rem;
    background: #43141e;
    color: #fff;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .form-control {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .flash-message {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
    }

    .header-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0.5rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .flash-message {
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    }
}