/* Hero Section */
.cap-hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=2")
            center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cap-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 181, 217, 0.3),
        rgba(8, 145, 178, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 181, 217, 0.3);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.membership-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
}

.membership-card h3 {
    color: var(--dark-color);
    font-weight: 700;
}

.membership-card .btn {
    border-radius: 30px;
    padding: 12px 30px;
}

/* The Stitch Section */
.stitch-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=2")
            center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.stitch-content {
    position: relative;
    z-index: 2;
}

.stitch-title {
    font-size: 72px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.stitch-section .btn {
    padding: 15px 50px;
    border-radius: 30px;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stitch-section .btn:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Focus Cards */
.focus-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.focus-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.focus-card:hover .focus-image img {
    transform: scale(1.1);
}

.focus-content {
    padding: 25px;
    background: white;
    text-align: center;
}

.focus-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.focus-content i {
    color: var(--primary-color);
    margin-left: 5px;
    font-size: 14px;
}
/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 16px;
}

.btn-subscribe {
  background: #fff;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Responsive Design */
@media (max-width: 991px) {
    .stitch-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .cap-hero-section {
        height: 500px;
    }

    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .stitch-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .newsletter-title {
        font-size: 32px;
    }

    .membership-card {
        padding: 30px;
    }
}
