/* Global Styles */
body {
    font-family: 'Ubuntu Condensed', sans-serif;
    min-height: 100vh;
    width: 100%;
    background: url('pop in image.jpg') center/cover no-repeat fixed;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
  }
  
  input, textarea, select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #cea135;
  }
  
  /* Button Base */
  .btn {
    background-color: #cea135;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .btn:hover {
    background-color: #333366;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    body {
      background-size: cover;
      background-attachment: scroll;
    }
  
    .skewed-header {
      height: 300px;
    }
  
    .skewed-header .header-bg {
      height: 300px;
      transform: skewY(-5deg);
    }
  
    .skewed-header-content {
      flex-direction: column;
      text-align: center;
      margin-top: 120px;
    }
  
    .heading-wrapper {
      left: 0;
      right: 0;
      margin: auto;
      width: auto;
      padding: 10px;
    }
  
    .menu ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .menu a {
      padding: 10px 0;
    }
  
    .top-section {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  
    .logo {
      font-size: 28px;
      margin-bottom: 10px;
    }
  
    .squares-wrapper {
      padding: 20px 10px;
    }
  
    .square {
      flex-direction: column !important;
      text-align: center;
      gap: 20px;
    }
  
    .image-wrapper img {
      width: 100%;
      max-width: 280px;
    }
  
    .square-text-wrapper {
      max-width: 100%;
    }
  
    .contact-section, .booking-section {
      margin: 30px 15px;
      padding: 20px;
    }
  
    .contact-section h2, .booking-section h2 {
      font-size: 22px;
    }
  
    input, textarea, select {
      padding: 0.8rem;
      font-size: 0.95rem;
    }
  
    .contact-section button,
    .booking-form button {
      font-size: 15px;
      padding: 10px 16px;
    }
  
    .footer .social-media-icons-wrapper {
      width: 100%;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
  
    .footer .menu ul {
      flex-direction: column;
      gap: 12px;
    }
  
    .footer .footer-phone-hours span {
      display: block;
      margin: 5px 0;
    }
  }
  

  /* Navigation */
  .navigation-wrapper {
    background-color: #050538;
    color: #cbcbcb;
    padding: 20px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .top-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .address-wrapper, .contact-wrapper {
    display: flex;
    align-items: center;
    color: #ddecef;
  }
  
  .address-wrapper i, .contact-wrapper i {
    margin-right: 8px;
    font-size: large;
    color: #cbcbcb;
  }
  
  .address-wrapper a {
    text-decoration: none;
    color: #ddecef;
    font-weight: lighter;
    font-size: small;
    transition: color 0.3s ease-in-out;
  }
  
  .address-wrapper a:hover {
    color: orange;
  }
  
  .logo {
    font-size: 35px;
    font-weight: bold;
    color: orange;
    margin-bottom: 20px;
  }
  
  /* Menu */
  .menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffcc00;
    transform: scale(1.05);
    border-radius: 5px;
  }
  
  .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ffcc00;
    transition: width 0.3s ease;
  }
  
  .menu a:hover::after {
    width: 100%;
  }
  
  /* Skewed Header */
  .skewed-header {
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  
  .skewed-header .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skewY(-7deg);
    transform-origin: top left;
    filter: brightness(80%);
  }
  
  .skewed-header .skewed-header-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .skewed-header-content {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    flex-wrap: wrap;
  }
  
  .heading-wrapper {
    position: absolute;
    left: 80px;
    margin-top: 200px;
    padding: 10px 15px;
    width: 175px;
    color: #050538;
    border-radius: 2px;
    text-align: center;
  }
  
  /* Content */
  .page-container {
    display: flex;
    justify-content: center;
  }
  
  .content-wrapper {
    width: 1000px;
  }
  
  .content-wrapper #room {
    width: 350px;
    margin: 25px 40px;
    float: left;
    border: 1px solid #cea135;
  }
  
  .content-wrapper p {
    letter-spacing: 1px;
    line-height: 40px;
  }
  
  /* Squares Section */
  .squares-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
  }
  
  .square {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 80%;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .square:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .image-wrapper img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #cea135;
  }
  
  .square-text-wrapper {
    max-width: 400px;
    text-align: center;
  }
  
  .square-text-wrapper h1 {
    color: #cea135;
  }
  
  .square-text-wrapper p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* Footer */
  .footer {
    background-color: #050538;
    color: #cbcbcb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
  
  .footer .footer-phone-hours span {
    margin: 0 10px;
    font-size: 1em;
    letter-spacing: 2px;
  }
  
  .footer .footer-phone-hours .hours {
    font-size: 0.8em;
    color: rgb(252, 216, 16);
  }
  
  .footer .menu,
  .footer .social-media-icons-wrapper {
    margin: 40px 0;
  }
  
  .footer .social-media-icons-wrapper {
    width: 300px;
    display: flex;
    justify-content: space-between;
  }
  
  .footer .social-media-icons-wrapper a {
    font-size: 1.5em;
    color: #ddecef;
    transition: 0.5s;
  }
  
  .footer .social-media-icons-wrapper a:hover {
    color: orange;
  }
  
  .footer .copyright-wrapper {
    font-size: 0.9em;
    color: rgb(163, 151, 151);
    margin-bottom: 50px;
  }
  
  /* Contact Section */
  .contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Slab', serif;
  }
  
  .contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 28px;
  }
  
  .contact-section form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-section label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .contact-section .hidden {
    display: none;
  }
  
  /* Booking Section */
  .booking-section {
    padding: 30px;
    background-color: #f7f7f7;
    font-family: 'Roboto Slab', serif;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .booking-section:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .booking-section h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .room-prices p {
    font-weight: bold;
    margin: 5px 0;
    color: #333;
  }
  
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .booking-form button {
    background-color: rgb(68, 4, 4);
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .booking-form button:hover {
    background-color: #555;
    transform: translateY(-2px);
  }
  
  .availability-info {
    margin-top: 25px;
    background-color: #cea135;
    padding: 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
  }
  
  .availability-info h3 {
    margin-bottom: 10px;
    font-weight: 700;
  }
  .contact-section button {
    background-color: #cea135;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
  }
  
  .contact-section button:hover {
    background-color: #333366;
    transform: scale(1.03);
  }
  .company-details-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 18px;
    color: #333;
  }
  
  .company-details-wrapper i {
    font-size: 20px;
    color: #cea135; /* gold-like accent color */
    margin-right: 10px;
    min-width: 24px; /* keeps icons aligned even if text length varies */
  }
  
  .squares-wrapper {
    padding: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  .square {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 20px 0 !important;
  }
  
  .image-wrapper img {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    border-radius: 10px !important;
    border: 1px solid #cea135 !important;
  }
  
  .square-text-wrapper {
    flex: 1 !important;
    min-width: 250px !important;
    text-align: center !important;
  }
  
  @media (max-width: 768px) {
    .square {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
  
    .squares-wrapper {
      padding: 15px !important;
    }
  
    .square-text-wrapper {
      max-width: 100% !important;
    }
  
    .booking-section {
      margin: 20px 10px !important;
      padding: 20px !important;
    }
  
    .booking-form {
      gap: 10px !important;
    }
  }
  