/* =====================================================
   BASSAGE WEBSITE - MAIN STYLESHEET
   ===================================================== */

/* =====================================================
   RESET & GLOBAL STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 0.5px solid #ddd;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 30px;
    font-weight: 600;
    color: #7B2D8F;
    letter-spacing: -0.5px;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #7B2D8F;
}

.social {
    display: flex;
    gap: 1.5rem;
}

.social a {
    text-decoration: none;
    color: #7B2D8F;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}

.social a:hover {
    color: #5a2169;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
/*.hero {
    background: linear-gradient(135deg, rgba(123, 45, 143, 0.7), rgba(123, 45, 143, 0.5)), 
                linear-gradient(135deg, #c9a9d9 0%, #b366cc 100%);
    background-image: url('images/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: white;
    text-align: left;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}*/

.hero {
  /* The gradient comes FIRST (top layer), the image comes SECOND (bottom layer) */
  background-image: linear-gradient(to bottom, rgba(123, 45, 143, 0.7), rgba(123, 45, 143, 0.5)), url('images/hero.jpg');
  
  /* Standard background utilities */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Layout context for text contrast */
    padding: 15rem 12rem;
    color: white;
    text-align: left;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.hero-banner {
  /* The gradient comes FIRST (top layer), the image comes SECOND (bottom layer) */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('your-image.jpg');
  
  /* Standard background utilities */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Layout context for text contrast */
  height: 400px;
  color: white; 
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.7rem;
    line-height: 1.1em;
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* =====================================================
   CTA BUTTON
   ===================================================== */
.cta-button {
    display: inline-block;
    background-color: #7B2D8F;
    color: white;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #5a2169;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.small {
    width: 200px;
    height: 60px;

}

/* =====================================================
   WELCOME SECTION
   ===================================================== */
.welcome {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.welcome-text h2 .accent {
    color: #7B2D8F;
}

.welcome-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.welcome-image {
    width: 100%;
    height: 400px;
    background-image: url('images/studio.jpg');
    /* Standard background utilities */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(123, 45, 143, 0.15);
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section h2 .accent {
    color: #7B2D8F;
}

h2.reg-spacing {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-category {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 0.5px solid #e0e0e0;
    transition: box-shadow 0.2s;
}

.service-category:hover {
    box-shadow: 0 2px 8px rgba(123, 45, 143, 0.08);
}

.service-category h3 {
    font-size: 16px;
    color: #7B2D8F;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-list {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* =====================================================
   PRICING TABLE
   ===================================================== */
.pricing-heading {
    font-size: 18px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pricing-table thead {
    background-color: #f9f9f9;
    border-bottom: 0.5px solid #e0e0e0;
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table td {
    padding: 0.75rem 1rem;
    border-bottom: 0.5px solid #e0e0e0;
    font-size: 16px;
    color: #555;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background-color: #fafafa;
}

.price {
    font-weight: 600;
    color: #7B2D8F;
}

.category-header {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #7B2D8F;
    padding: 0.85rem 1rem !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.category-subheader {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #7B2D8F;
    padding: 0.85rem 1rem !important;
    /*text-transform: uppercase;*/
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* =====================================================
   POLICY BOXES
   ===================================================== */
.policy-box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #7B2D8F;
    margin-bottom: 2rem;
}

.policy-box h3 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.policy-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-section h2 .accent {
    color: #7B2D8F;
}

.contact-section p {
    color: #666;
    font-size: 14px;
    margin-bottom: 1rem;
}

.phone {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 13px;
}

.social-links a {
    color: #7B2D8F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #5a2169;
    text-decoration: underline;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 12px;
    color: #999;
    border-top: 0.5px solid #ddd;
    background-color: #ffffff;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .welcome {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 1rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 14px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section h2 {
        font-size: 24px;
    }

    .pricing-table {
        font-size: 12px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem;
    }

    .social-links {
        gap: 1rem;
        font-size: 12px;
    }

    .contact-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0.5rem;
    }

    nav {
        gap: 0.25rem;
    }

    nav a {
        font-size: 12px;
    }

    .logo {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 13px;
    }

    .welcome-text h2 {
        font-size: 24px;
    }

    .section h2 {
        font-size: 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 11px;
    }

    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
a:focus,
button:focus {
    outline: 2px solid #7B2D8F;
    outline-offset: 2px;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    header,
    footer,
    .cta-button {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}
