/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: url(images.com/istockphoto-150417217-612x612.jpg) no-repeat center center/cover;
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  width: 15rem;
  margin-bottom: 20px;
  height: auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .cta {
  text-decoration: none;
  color: white;
  background: #007BFF;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 10px;
  transition: background 0.3s ease;
}

.hero-buttons .cta:hover {
  background: #0056b3;
}

.hero-buttons .call-now {
  background: #28a745;
}

.hero-buttons .call-now:hover {
  background: #218838;
}

/* Navigation */
.navigation {
  background: #007BFF;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navigation ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.navigation li {
  margin: 0 15px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navigation a:hover {
  text-decoration: underline;
}

/* About Section */
.about {
  padding: 50px 20px;
  text-align: center;
  background: #f4f4f4;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.circular-image {
  border-radius: 50%;
  width: 150px;
  margin-bottom: 20px;
}

.about-content p {
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 20px;
}

.card .btn {
  text-decoration: none;
  background: #007BFF;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
}

.card .btn:hover {
  background: #0056b3;
}

/* Testimonials Section */
.testimonials {
  background: #007BFF;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  color: #333;
  padding: 20px;
  border-radius: 5px;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column h3 {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #007BFF;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.gallery h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  animation: fadeIn 1s ease-in-out;
}

/* Gallery Flow Layout */
.gallery-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: flowMove 10s infinite linear;
}

.gallery-item {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background-color: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

/* Animations */
@keyframes flowMove {
  0% {
      transform: translateX(0);
  }
  70% {
      transform: translateX(-20px);
  }
  100% {
      transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


.shop {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.swimsuit {
  display: inline-block;
  width: 30%;
  margin: 10px;
  text-align: center;
}

.swimsuit img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.swimsuit p {
  font-size: 1.2em;
  color: #333;
}

.tittle-swim {
  text-align: center;
}


/* Footer Grid Design */
footer {
  background: #333;
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95em;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-section {
  padding: 10px;
}

.footer-section h4 {
  color: #007bff;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section p {
  margin: 5px 0;
  color: #aaa;
}

.footer-section a {
  color: #007bff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #0056b3;
}

/* Social Media Icons */
.social-icons a {
  margin: 0 10px;
  font-size: 1.5em;
  color: #bbb;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

/* Newsletter Form */
.footer-section form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-section input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 0.95em;
}

.footer-section button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-section button:hover {
  background: #0056b3;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  font-size: 0.85em;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}


footer {
  display: flex;
  flex-direction: column;
  text-align: center;
}


/* Prevent horizontal scrolling */
body {
  overflow-x: hidden;
}

/* Make sure elements fit within the screen on smaller devices */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Ensure images and other elements are responsive */
img, video, iframe {
  max-width: 100%;
  height: auto;
}


.container {
  width: 100%;
  max-width: 1200px; /* You can set a max-width if needed */
  margin: 0 auto;
}

