* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f5f5;
}

/* NAVBAR */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HERO */
.hero {
    height: 95vh;
    background: url('shop.jpg') center top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.7)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* 👈 push text down */
    align-items: center;
    padding-bottom: 120px;       /* 👈 spacing from bottom */
    text-align: center;
    color: white;
}

.overlay h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
    max-width: 700px;
}

.overlay p {
    margin: 15px 0;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    max-width: 600px;

}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.light {
    background: #fff;
}

.center {
    text-align: center;
}

/* OWNER */
.owner {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: auto;
    transition: 0.3s;
}

.owner img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


.owner h2 {
    margin-bottom: 5px;
    font-size: 24px;
}

.owner h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #666;
}

.owner p {
    line-height: 1.6;
    color: #666;
    font-size: 15px;
}

#owner.section {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    
    .owner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
}

.owner-text {
    width: 100% !important;   
    text-align: center !important;
}

.owner-text p {
    text-align: center !important;
}

.badge {
    display: inline-block;
    margin: 10px auto;
}

    /* NAVBAR FIX */
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav h2 {
        font-size: 22px;
    }

    .nav a {
        margin: 5px 10px 0 0;
        font-size: 14px;
    }

    /* HERO FIX */
    .overlay h1 {
        font-size: 26px;
        line-height: 1.3;
    }

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

    .overlay {
        padding-bottom: 60px;
    }

    /* OWNER SECTION FIX */
    .owner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .owner img {
        width: 160px;
        height: 160px;
        border-radius: 50%; /* make it circle instead of oval */
    }

    .owner-text {
        width: 100%;
    }

    .owner-text p {
        text-align: center;
    }

    /* BUTTONS FIX */
    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .buttons .btn {
        width: 80%;
    }
}

.owner-text {
    width: 45%;   /* 👈 gives proper space */
}

.owner-text p {
    line-height: 1.6;
    color: #555;
    text-align: left;
    word-break: normal;
}

.owner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

/* BUTTONS */
.btn {
    background: #28a745;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: #218838;
}

.green { background: #28a745; }
.whatsapp { background: #25D366; }
.blue { background: #007bff; }

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; /* makes it responsive */
}

.buttons .btn {
    min-width: 160px;   /* equal width */
    text-align: center;
    font-weight: 500;
    border-radius: 10px;
}

/* optional: smoother premium look */
.buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}



/* FOOTER */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer h3 {
    color: white;
    margin-bottom: 10px;
}

.footer p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.socials span {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}


.badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 10px 0;
    font-weight: 500;
}

.socials a {
    text-decoration: none;
    color: inherit;
}

.socials a:hover {
    text-decoration: underline;
}