﻿@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700");

/* ===== BASE ===== */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    background: repeating-linear-gradient(45deg, #000, #2a2a2a 100px);
    background-size: 107px 108px;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-bottom: 80px;
}

/* ===== THEME COLORS ===== */
:root {
    --color: #395660;
    --color2: #64af35;
}

/* ===== UNIVERSAL ===== */
a {
    text-decoration: none;
    color: inherit;
}

div, h1, h2, h3, h4, p, i, a {
    transition: 0.4s;
}

input::placeholder,
textarea::placeholder {
    font-size: 13px;
    color: var(--color);
}

form, input, textarea, select, button {
    font-family: Montserrat, sans-serif;
}

/* ===== WRAPPER ===== */
.card-wrapper {
    width: 420px;
    max-width: 95%;
    margin: 40px auto 120px;
    background: transparent;
    border-radius: 15px;
   
  
}



    .card-wrapper::before {
        content: "";
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        z-index: -1;
    }

/* ===== HEADER CARD ===== */
.card {
    width: 100%;
    background: url(card_images/bg5.png);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 10px;
}

.view_counter {
    background: #000;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 4px;
    width: fit-content;
    margin: 6px auto;
}

.card_content {
    padding-top: 25px;
    text-align: center;
}

    .card_content img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 3px solid #fff;
        background: #fff;
        object-fit: cover;
    }

.card_content2 {
    margin-top: 10px;
    text-align: center;
}

    .card_content2 h2 {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 0 0 10px #000;
    }

    .card_content2 p {
        font-size: 13px;
        color: #f8f8f8;
    }

/* ===== CONTACT ===== */
.contact_details {
    padding: 10px 15px 20px;
}

.contact_d {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
    margin: 6px 0;
}

    .contact_d i {
        color: var(--color2);
        font-size: 15px;
        margin-right: 10px;
    }

    .contact_d p {
        font-size: 13px;
        color: #fff;
    }

/* ===== SHARE SECTION ===== */
.share-section {
    background: #fff;
    border: 2px solid var(--color2);
    border-radius: 12px;
    margin: 20px auto;
    padding: 20px 15px;
    width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
}

    .share-section h3 {
        color: var(--color2);
        font-weight: 700;
        margin-bottom: 6px;
        font-size: 18px;
    }

    .share-section .share-subtext {
        color: #555;
        font-size: 13px;
        margin-bottom: 14px;
    }

.whatsapp-share-box .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.whatsapp-share-box .prefix {
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 8px 10px;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
}

.whatsapp-share-box input[type="text"] {
    width: 120px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0 6px 6px 0;
}

.btn-whatsapp {
    background: var(--color2);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-whatsapp:hover {
        background: #4fa42c;
    }

.share-btn-row {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline {
    border: 1.5px solid var(--color2);
    color: var(--color2);
    background: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-outline:hover {
        background: var(--color2);
        color: #fff;
    }

/* ===== QR SECTION ===== */
.qr-section {
    background: #fff;
    border: 2px solid var(--color2);
    border-radius: 12px;
    margin: 20px auto;
    padding: 20px 15px;
    width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
}

    .qr-section .qr-header {
        color: var(--color2);
        font-weight: 700;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .qr-section .qr-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

.qr-img {
    width: 140px;
    height: 140px;
    border: 2px solid var(--color2);
    border-radius: 10px;
    background: #fff;
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .qr-img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(100,175,53,0.4);
    }

.copy-link-btn,
.qr-download-btn {
    display: inline-block;
    background: #fff;
    border: 1.5px solid var(--color2);
    color: var(--color2);
    border-radius: 6px;
    padding: 7px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .copy-link-btn i,
    .qr-download-btn i {
        margin-right: 5px;
    }

    .copy-link-btn:hover,
    .qr-download-btn:hover {
        background: var(--color2);
        color: #fff;
    }

/* ===== SECTION CARDS ===== */
.card2 {
    background: #fff;
    width: 400px;
    margin: 20px auto;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

    .card2 h3 {
        text-align: center;
        font-size: 20px;
        background: var(--color);
        color: #fff;
        font-weight: 600;
        border-bottom: 3px solid var(--color2);
        padding: 10px 0;
        margin-bottom: 10px;
    }

/* ===== GALLERY ===== */
.img_gall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 15px auto;
    width: 95%;
}

    .img_gall img {
        width: 180px;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .img_gall img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--color2);
        }

/* ===== FEEDBACK & ENQUIRY ===== */
#feedback, #enquiry {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    margin: 15px auto;
    overflow: hidden;
}

    #feedback h3, #enquiry h3 {
        background: var(--color);
        color: #fff;
        font-weight: 600;
        text-align: center;
        font-size: 20px;
        border-bottom: 3px solid var(--color2);
        padding: 10px 0;
        margin: 0 0 15px;
    }

    .feedback_form, #enquiry form {
        padding: 15px 20px 25px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .feedback_form input,
        .feedback_form textarea,
        .feedback_form select,
        #enquiry form input,
        #enquiry form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 14px;
            background: #f8f8f8;
            transition: 0.3s;
        }

            .feedback_form input:focus,
            .feedback_form textarea:focus,
            .feedback_form select:focus,
            #enquiry form input:focus,
            #enquiry form textarea:focus {
                outline: none;
                border-color: var(--color2);
                box-shadow: 0 0 5px rgba(100,175,53,0.4);
            }

        .feedback_form button,
        #enquiry form button {
            background: var(--color2);
            color: #fff;
            border: none;
            padding: 10px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }

            .feedback_form button:hover,
            #enquiry form button:hover {
                background: #539a2c;
            }

/* ===== COPYRIGHT ===== */
.copyright {
    width: 100%;
    background: var(--color);
    color: var(--color2);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}

/* ===== BOTTOM MENU ===== */
.menu_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color2);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.menu_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 0;
}

.menu_item {
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    min-width: 65px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}

    .menu_item i {
        font-size: 18px;
    }

    .menu_item:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
    .card-wrapper {
        width: 95%;
        margin: 0 auto 90px;
    }

    .menu_item {
        font-size: 11px;
        padding: 8px;
    }

    .img_gall img {
        width: 45%;
        height: 150px;
    }
}
