
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f0e6;
    color: #33130f;
}
a { text-decoration: none; color: #a0281b; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.header {
    background: #f7f0e6;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 192px; max-height: 192px;
}
.nav a {
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}
.nav a:hover {
    color: #cc3a28;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1544717305-2782549b5136?auto=format&fit=crop&w=1650&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 192px;
    top: 0;
}
.hero-text {
    color: #fff;
    text-align: center;
    z-index: 2;
    position: relative;
}
.hero-text h1 {
    font-size: 48px;
    margin: 0;
}
.hero-text p {
    font-size: 22px;
    margin-top: 10px;
}

.section {
    padding: 60px 20px;
}
.alt {
    background-color: #f8f1e7;
}
h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #a0281b;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card {
    background: #f7f0e6;
    padding: 20px;
    border: 1px solid #e3dcd5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1 1 300px;
}

.card ul {
    padding-left: 20px;
}

.footer {
    background-color: #a0281b;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.footer a {
    color: #f7f0e6;
    text-decoration: underline;
}

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.floating-icons img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s, opacity 0.3s;
}
.floating-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

html {
    scroll-behavior: smooth;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #a0281b;
    cursor: pointer;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}
.contact-form button {
    background-color: #a0281b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
.contact-form button:hover {
    background-color: #cc3a28;
}
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #f7f0e6;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px 20px;
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        margin: 10px 0;
    }
    .nav-toggle {
        display: block;
    }
}


.pay-btn {
    display: inline-block;
    background-color: #a0281b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.pay-btn:hover {
    background-color: #cc3a28;
}


.blue-pay-btn {
    background-color: #2874A6;
    color: #fff;
    padding: 16px 32px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.blue-pay-btn:hover {
    background-color: #1a5276;
}

.navbar .logo img {
    height: 192px;
    transition: height 0.3s ease;
}
