:root {
    --primary-color: #87A987;
    --text-color: #333;
    --white: #fff;
    --beige: #F4F1EA;
    --button-hover: #6E8E6E;
}  

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: var(--white);
    font-size: 18px;
    margin-left: 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--button-hover);
}

#wrap {
    width: 80%;
    margin: 0 auto;
}

#box1 {
    width: 75%;
    padding: 10px;
    float: left;
}

#box2 {
    width: 15%; 
    padding: 10px;
    float: left;
}

#box2 a {
    color: chocolate;
}

#map {
    height: 400px;
}

#minutesColor {
    color: chocolate;
}

#noticeColor {
    color: #006400;
}

#cancellationPolicy {
    font-size: large;
    font-weight: bold;
    color: purple;
}

#bookNow {
    color: #87A987;
    font-size: xx-large;
}

#box1 h3 {
    font-weight: bold;
    font-size: x-large;
}


.board-attachment {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 20px;
  border-radius: 6px;
  max-width: 500px;
  font-family: sans-serif;
}

.file-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.file-name {
  flex-grow: 1;
  color: #495057;
  font-size: 14px;
}

.btn-download {
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  transition: background 0.2s;
}

.btn-download:hover {
  background-color: #0056b3;
}

/* Responsive Layout */
@media (max-width: 960px) {
    #wrap {
        width: 95%;
    }
}

@media (max-width: 768px) {
    #wrap {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #box1,
    #box2 {
        float: none; 
        width: 100%;
    }
}
