/*
Theme Name: GoBlueSailing Theme
Theme URI: https://gobluesailing.com
Author: Grok
Author URI: https://x.ai
Description: A custom WordPress theme for GoBlueSailing.com, a crewed yacht chartering business.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gobluesailing-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.header, .footer {
  background-color: #003087;
  color: white;
  text-align: center;
  padding: 20px 0;
}
.hero {
  background: url('images/key-yacht.jpg') no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero h2 {
  font-size: 60px;
  margin: 0;
}
.hero p {
  font-size: 28px;
}
.button {
  background-color: #ff6200;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}
.gallery img {
  width: 280px;
  height: 200px;
  border-radius: 8px;
  margin: 10px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero p {
    font-size: 20px;
  }
  .gallery img {
    width: 100%;
    height: auto;
  }
}