/* =============================================
   OrlandoCruiseGuide.com — Main Stylesheet
   Tropical / Travel Theme
   ============================================= */

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

body {
  font-family: 'Georgia', serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

a {
  color: #0077b6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---- HEADER ---- */
header {
  background: #023e6e;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.logo span {
  color: #48cae4;
}

nav a {
  color: #90cce8;
  margin-left: 20px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
  text-decoration: none;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 35, 80, 0.65);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 18px;
  line-height: 1.2;
  position: relative;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.9;
  position: relative;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ---- PHOTO CARDS ---- */
.photo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.photo-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  text-decoration: none;
}

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

.photo-card-body {
  padding: 20px;
  background: #fff;
  border: 1px solid #dde;
  border-top: none;
}

.photo-card-body h3 {
  font-size: 18px;
  color: #023e6e;
  margin-bottom: 8px;
}

.photo-card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* ---- MAIN CONTENT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- SECTION TITLES ---- */
.section-title {
  text-align: center;
  margin: 60px 0 36px;
}

.section-title h2 {
  font-size: 30px;
  color: #023e6e;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 17px;
}

/* ---- FEATURE BOXES ---- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.feature-box {
  background: #f0f8ff;
  border: 1px solid #b8ddf0;
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
}

.feature-box .icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-box h3 {
  font-size: 19px;
  color: #023e6e;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
}

/* ---- INSIDER TIP BOX ---- */
.insider-tip {
  background: #fff8e6;
  border-left: 4px solid #f0a500;
  border-radius: 0 6px 6px 0;
  padding: 18px 24px;
  margin: 24px 0;
  font-style: italic;
}

.insider-tip strong {
  display: block;
  font-style: normal;
  color: #a07000;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* ---- ARTICLE CONTENT ---- */
.article-content {
  max-width: 780px;
  margin: 50px auto;
  padding: 0 40px;
}

.article-content h1 {
  font-size: 36px;
  color: #023e6e;
  margin-bottom: 10px;
  line-height: 1.25;
}

.article-content .meta {
  color: #888;
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin-bottom: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.article-content h2 {
  font-size: 24px;
  color: #023e6e;
  margin: 36px 0 12px;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content ul {
  margin: 0 0 18px 24px;
}

.article-content ul li {
  margin-bottom: 8px;
}

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.blog-card {
  border: 1px solid #b8ddf0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 22px;
}

.blog-card h3 {
  font-size: 18px;
  color: #023e6e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.blog-card a.read-more {
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #0077b6;
  font-weight: bold;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: #f0f8ff;
  border: 1px solid #90cce8;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  margin: 20px 0 60px;
}

.cta-banner h2 {
  font-size: 26px;
  color: #023e6e;
  margin-bottom: 12px;
}

.cta-banner p {
  color: #555;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  background: #0077b6;
  color: #fff;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  transition: background 0.2s;
  margin: 6px;
}

.btn:hover {
  background: #023e6e;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-orange {
  background: #e8732a;
}

.btn-orange:hover {
  background: #c95e1a;
}

/* ---- ABOUT & CONTACT ---- */
.about-content {
  max-width: 780px;
  margin: 50px auto 70px;
  padding: 0 40px;
}

.about-content h1 {
  font-size: 36px;
  color: #023e6e;
  margin-bottom: 24px;
}

.about-content h2 {
  font-size: 24px;
  color: #023e6e;
  margin: 36px 0 12px;
}

.about-content p {
  margin-bottom: 18px;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto 70px;
  padding: 0 40px;
}

.contact-form h1 {
  font-size: 32px;
  color: #023e6e;
  margin-bottom: 8px;
}

.contact-form p.intro {
  color: #555;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: Georgia, serif;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0077b6;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* ---- FOOTER ---- */
footer {
  background: #023e6e;
  color: #80b8d8;
  padding: 40px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #80b8d8;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid #0a5a9e;
  text-align: center;
  color: #4a88b8;
  font-size: 13px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .features { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .photo-cards { grid-template-columns: 1fr; }

}

/* ---- HAMBURGER MENU ---- */
.hamburger {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 6px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 14px;
  line-height: 1;
  min-width: 50px;
  min-height: 44px;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #023e6e;
    padding: 16px 24px 20px;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  }

  nav.open { display: flex; }

  nav a {
    margin: 0;
    margin-left: 0 !important;
    font-size: 17px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #fff;
  }
}
