
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #54bcd6;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  color: #18056a;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #020429;
}


h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  color: #06074c;
}


.btn,
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0746b2, #0077ff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #ffda79;
  color: #0a3d62;
}

.btn:hover {
  background: linear-gradient(135deg, #0055dd, #0091ff);
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #e0b94f;
  transform: translateY(-3px);
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
.site-header {
  background: rgba(168, 199, 222, 0.95);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(2, 10, 45, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgb(4, 14, 54);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  margin: 0 15px;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: #2997ca;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #091b5e;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
   display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #140560;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  top: 100%;
  left: 0;
  z-index: 99;
}

.dropdown-content a {
  color: #222;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: #f2f2f2;
  color: #0a3d62;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('beach.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}


.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 16, 26, 0.6);
  z-index: 1;
}


.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-inner h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(188, 219, 230, 0.838);
}

.hero-inner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-primary {
  background: #ffba08;
  color: #0a3d62;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
  .hero-inner h2 {
    font-size: 2.2rem;
  }

  .hero-inner p {
    font-size: 1rem;
  }
}

/* =====================================================
   GRID / FEATURED CARDS
===================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h4 {
  margin-bottom: 10px;
  color: #0a3d62;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #06074c;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.destinations {
  padding: 60px 0;
}

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-hero {
  background: linear-gradient(to right, #005f73, #59cde8);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.about-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-text h3 {
  margin-top: 20px;
  color: #080661;
}

.about-text p {
  line-height: 1.6;
  color: #333;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.values-section {
  background: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 900px;
  width: 100%;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.title {
  text-align: center;
  font-size: 2.2rem;
  color: #0a3d62;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  font-size: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a3d62;
  box-shadow: 0 0 6px rgba(10, 61, 98, 0.3);
  outline: none;
}

.contact-form textarea {
  grid-column: span 2;
  resize: none;
}

.contact-form .btn {
  grid-column: span 2;
  background: #0a3d62;
}

.contact-form .btn:hover {
  background: #074b7b;
  transform: translateY(-2px);
}

.map-container {
  margin-top: 50px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  border: none;
}

/* =====================================================
   BLOG PAGE
===================================================== */
.blog-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.post h2 {
  color: #0a3d62;
  margin-bottom: 0.5rem;
}

.meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.post-img {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}

/* Sidebar */
.sidebar-section {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.sidebar-section h4 {
  color: #0a3d62;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #ffda79;
  padding-bottom: 0.3rem;
}

.sidebar-section ul {
  list-style: none;
}

.sidebar-section ul li {
  margin: 0.5rem 0;
}

.sidebar-section ul li a {
  color: #333;
  transition: color 0.3s ease;
}

.sidebar-section ul li a:hover {
  color: #0a3d62;
}

.tags span {
  display: inline-block;
  background: #eaf0f6;
  color: #0a3d62;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 4px;
  font-size: 0.9rem;
}

/* =====================================================
   COMMENTS SECTION
===================================================== */
.comments {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.comments h3 {
  margin-bottom: 15px;
  color: #0a3d62;
  font-size: 1.5rem;
}

#commentList {
  margin-bottom: 20px;
}

.comment-item {
  background: #f8fafc;
  border-left: 4px solid #0a3d62;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 12px;
}

.comment-item strong {
  color: #0a3d62;
  margin-right: 5px;
}

#commentForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#commentForm input,
#commentForm textarea {
  padding: 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#commentForm input:focus,
#commentForm textarea:focus {
  outline: none;
  border-color: #0a3d62;
  box-shadow: 0 0 6px rgba(10, 61, 98, 0.3);
}

#commentForm button {
  background: #0a3d62;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#commentForm button:hover {
  background: #06314b;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #commentForm input,
  #commentForm textarea,
  #commentForm button {
    width: 100%;
  }
}
.delete-btn {
  margin-top: 10px;
  padding: 6px 10px;
  background: #d9534f;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.delete-btn:hover {
  background: #c9302c;
}



/* =====================================================
   FOOTER
===================================================== */
.site-footer,
footer {
  background: #10187d;
  color: #9ac7d5;
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}
.newsletter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}



/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .btn,
  .contact-form textarea {
    grid-column: span 1;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {
  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

