* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    background: white;
    color: #102a43;
}

/* TOP BAR */
.top-bar {
    background: #1f3b73;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 8px 8%;
    text-align: center;
}

.navbar h2,
.logo {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #005bbb;
    margin: 0 0 8px;
}

.tagline {
    margin: 0 0 12px;
    color: #073763;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar nav {
    display: flex;
    justify-content: center;
    gap: 38px;
    border-top: 1px solid #d9e4f5;
    padding-top: 13px;
    margin-top: 13px;
}

.navbar a {
    color: #073763;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

/* PROMO BANNER */
.promo-banner {
    background: #2f55b7;
    color: white;
    padding: 26px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.promo-banner strong {
    font-size: 36px;
    display: block;
    margin-bottom: 6px;
}

.promo-banner p {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.promo-banner a {
    background: white;
    color: #2f55b7;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

/* HERO */
.hero {
    height: 390px;
    background-image:
        linear-gradient(to right,
            rgba(5, 25, 60, 0.9) 0%,
            rgba(5, 25, 60, 0.65) 28%,
            rgba(5, 25, 60, 0.22) 52%,
            rgba(5, 25, 60, 0) 78%
        ),
        url("images/hero-pool.png");
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 7%;
    color: white;
}

.hero-text {
    max-width: 470px;
}

.hero .small-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: white;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    margin: 12px 0 18px;
    color: white;
}

.hero p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 440px;
    color: white;
}

.buttons {
    margin-top: 24px;
}

.btn {
    padding: 11px 23px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
}

.main-btn {
    background: #5967d8;
    color: white;
}

/* ABOUT */
.about {
    padding: 65px 8%;
    background: white;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 42px;
    align-items: center;
}

.small-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.blue {
    color: #0077cc;
}

.about-text h2 {
    font-size: 36px;
    color: #073763;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.about-card {
    background: white;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.about-card h3 {
    color: #0077cc;
    margin-bottom: 18px;
    font-size: 22px;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    margin-bottom: 12px;
    font-size: 15px;
}

.about-card li::before {
    content: "✓ ";
    color: #0077cc;
    font-weight: bold;
}

/* GALLERY */
.gallery {
    padding: 65px 8%;
    background: #eef6ff;
    text-align: center;
}

.gallery .small-title {
    color: #4a74d9;
    font-size: 14px;
    letter-spacing: 3px;
}

.gallery h2 {
    font-size: 38px;
    color: #073763;
    margin: 16px 0 45px;
}

.before-after-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 10px;
    background: white;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.photo-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #005bbb;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* STORE */
.store-section {
    padding: 70px 8%;
    background: #073763;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    color: white;
}

.store-image img {
    width: 100%;
    height: auto;
}

.store-text h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
}

.store-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: white;
}

.store-btn {
    padding: 18px 36px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
}

/* FOOTER */
.footer {
    background: #04254d;
    color: white;
    text-align: center;
    padding: 22px 20px;
}

.footer p {
    margin: 6px 0;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .navbar h2,
    .logo {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 10px;
    }

    .navbar nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

    .promo-banner {
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
        padding: 14px 6%;
    }

    .hero {
        height: auto;
        min-height: 420px;
        padding: 60px 22px;
        text-align: center;
        justify-content: center;
        background-position: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .about,
    .store-section {
        grid-template-columns: 1fr;
        padding: 55px 6%;
    }

    .gallery {
        padding: 55px 6%;
    }

    .before-after-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project {
        height: 270px;
    }

    .about-text h2,
    .gallery h2,
    .store-text h2 {
        font-size: 32px;
    }
}
/* FINAL HERO FIXES */
.hero {
    height: 390px;
    background-image:
        linear-gradient(to right,
            rgba(5, 25, 60, 0.82) 0%,
            rgba(5, 25, 60, 0.68) 25%,
            rgba(5, 25, 60, 0.25) 48%,
            rgba(5, 25, 60, 0) 78%
        ),
        url("images/hero-pool.png");
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    padding: 70px 7% 0;
    color: white;
}

.hero-text {
    max-width: 470px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.08;
    margin: 12px 0 18px;
    font-weight: 800;
}

.hero p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 450px;
}

.hero .small-title {
    font-size: 12px;
    letter-spacing: 3px;
}

.buttons {
    margin-top: 22px;
}

.btn {
    padding: 12px 26px;
    border-radius: 14px;
    font-size: 14px;
}

.main-btn {
    background: #5967d8;
    color: white;
}

/* STORE SECTION FIX */
.store-section {
    grid-template-columns: 1.1fr 1fr;
}
.before-after-showcase {
    max-width: 1150px;
    margin: 0 auto;
    gap: 36px;
}

.project {
    height: 360px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    background: white;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.photo-label {
    top: 14px;
    left: 14px;
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 11px;
}
/* ===== PROMO BANNER OVERRIDES ===== */

.promo-banner {
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.promo-banner p {
    flex: 1;
}

.promo-banner a {
    flex-shrink: 0;
    min-width: 260px;
    text-align: center;
    white-space: nowrap;
}
.promo-banner a {
    flex-shrink: 0;
    min-width: 260px;
    padding: 18px 34px;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}
.promo-banner {
    align-items: center;
}
.promo-banner a {
    margin-left: 30px;
}
/* ===== TOP BAR ===== */

.top-bar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.top-bar span{
    color:white;
    opacity:.7;
}

.top-bar a{
    color:white;
    text-decoration:none;
    transition:.25s;
}

.top-bar a:hover{
    color:#d9e4f5;
}

.instagram-link i{
    margin-right:6px;
    color:#ff4fa0;
    font-size:15px;
}

.instagram-link:hover i{
    transform:scale(1.15);
    transition:.2s;
}
/* ===== STORE CALL BUTTON OVERRIDE ===== */

.store-btn {
    display: inline-block;
    background: white;
    color: #1f3b73 !important;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 28px;
    margin-top: 20px;
    transition: all 0.25s ease;
}

.store-btn:hover {
    background: #f4f4f4;
    color: #1f3b73 !important;
    transform: translateY(-2px);
}
/* ===== CALL BUTTON ===== */

.call-btn {
    display: inline-block;
    background: white;
    color: #1f3b73 !important;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    margin-top: 25px;
    transition: 0.25s ease;
}

.call-btn:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
}
