:root {
  --accent: #0ea5a4;
  --muted: #6b7280;
  font-family: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #f7fafc;
  color: #0b1220;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
  margin-left:150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.brand {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.5rem;
}
.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav a {
  color: #0b1220;
  text-decoration: none;
  font-weight: 800;
  font-size: larger;
}
.nav a:hover {
  color: var(--accent);
}
.btn {
  border: 1px solid #0b1220;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.menu-toggle { display: none; }

/* Hero Section */
.hero {
  width: 100%;
  height: 700px;
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 1rem;
}
.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  margin: top 2px; 
}
.hero-content h1 {
    margin-left: 20px;
  font-size: 2rem;
}
/* Hero content container */
.hero-content {
  text-align: center;
  padding: 120px 20px;
 
  color: white;
  border-radius: 15px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Hero heading */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Hero paragraph */
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero buttons container */
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Buttons common styles */
.hero-actions .btn {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Primary button */
.btn-primary {
  background: #fff;
  color: #2575fc;
  border: none;
}

.btn-primary:hover {
  background: #6a11cb;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}


/* Sections */
.section {
  padding: 3rem 1rem;
}
.section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 1rem;
}
.card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}


/*about */
.about-section {
    padding: 60px 20px;
    background: #f5f7fa;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content .btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-content .btn-primary {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
}

.about-content .btn-primary:hover {
    background-color: #ff4757;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Contact */
.contact-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b6b;
    outline: none;
    box-shadow: 0 0 10px rgba(255,107,107,0.2);
}

.contact-form button {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    background-color: #ff6b6b;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff4757;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        width: 100%;
    }
}

.contact-info a {
    display: inline-block; /* makes the email appear on its own line */
    margin-bottom: 15px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* Footer */


.site-footer {
    background-color: #222;
    color: #fff;
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-inner p {
    margin: 0;
    font-size: 4rem;
}

.footer-socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 40px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}


/* Modal */
/* Modal overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal[aria-hidden="false"] {
  display: flex;
  opacity: 1;
}

/* Modal content box */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-30px);
  animation: slideDown 0.3s forwards;
}

/* Slide down animation */
@keyframes slideDown {
  to { transform: translateY(0); }
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #2575fc;
}

/* Modal heading */
#modalTitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #333;
}

/* Form labels and inputs */
.booking-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  font-weight: 500;
  color: #555;
}

.booking-form input {
  margin-top: 5px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form input:focus {
  border-color: #2575fc;
  box-shadow: 0 0 6px rgba(37, 117, 252, 0.4);
  outline: none;
}

/* Modal actions buttons */
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.modal-actions .btn {
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-actions .btn:hover {
  opacity: 0.9;
}

/* Cancel button */
#cancelBtn {
  background: #eee;
  color: #333;
}

/* Confirm button */
.btn-primary {
  background: #2575fc;
  color: white;
}

.btn-primary:hover {
  background: #6a11cb;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .modal-content {
    padding: 1.5rem;
  }
  #modalTitle {
    font-size: 1.5rem;
  }
  .booking-form input {
    font-size: 14px;
  }
  .modal-actions .btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 10px;
    top: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .nav.show { display: flex; }
}

/* Newsletter Form */
.newsletter-form {  display: flex;  gap: 0.5rem;  justify-content: center;  margin-top: 1rem;}
.newsletter-form input {  padding: 0.5rem;  border-radius: 8px;  border: 1px solid #ccc;  width: 250px;}
.newsletter-form button {  padding: 0.5rem 1rem;  border-radius: 8px;  border: none;  background: var(--accent);  color: white;  cursor: pointer;}  
.newsletter-form button:hover {  background: #0b1220;  transition: background 0.3s ease;}
/* End of File */
