﻿  .banner {
    width: 100%; /* default for mobile */
    height: auto;
  }

  @media (min-width: 768px) {
    .banner {
      width: 100%; /* for tablets/computers */
      display: block;
      margin: 0 auto; /* optional: center the banner */
    }
  }

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffaf2;
    color: #3a1f0b;
}

header {
    background-color: #800000; /* Maroon */
    text-align: center;
    padding: 10px 0;
}

header img {
    width: 100%;
    max-height: 250px;
    object-fit: scale-down;
}

nav {
    background-color: #a00000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: #ffd700;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: bold;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #600000;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background: #fffdf7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(128,0,0,0.2);
}

h1, h2 {
    color: #800000;
    font-size: 2em; /* default for desktop */
    text-align: center;
    white-space: normal; /* allow wrapping */
}

/* For mobile screens (max-width 600px) */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2em; /* smaller heading for mobile */
    }
    h2 {
        font-size: 1.0em; /* smaller sub-heading */
    }
    h1, h2 {
        /*white-space: nowrap; /* try to keep in 1 line */
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


footer {
    margin-top: 40px;
    background-color: #800000;
    color: #ffd700;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

footer a {
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}
