*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root {
    --primary: #b8860b;
    --primary-dark: #9a7209;
    --primary-light: #e4b95b;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --error: #dc3545;
    --success: #28a745;
}

body{
    font-family: 'Montserrat', sans-serif;
    background: var(--gray);
    color: var(--light);
    line-height:1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:rgba(255,245,215,0.6);
    backdrop-filter:blur(8px);
    z-index:1000;
    transition:0.3s;
}

.navbar.scrolled {
    background:rgba(255,245,215,0.6);
}

.navbar .nav-logo img {
    height:50px;
}

.nav-links {
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links button {
    text-decoration:none;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;    
    font-weight:500;
    transition:0.3s;
}

.nav-links button:hover {
    color:var(--light);
}

.menu-toggle{
    display:none;
    font-size:28px;
    color: var(--secondary);
    cursor:pointer;
}

.logo {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 245, 215, 0.50);
    height: auto;
    animation: fadeIn 2s ease-in-out;
}

.btn {
    margin-top:30px;
    padding:12px 30px;
    border:1px solid var(--primary-light);
    color: var(--primary);
    text-decoration:none;
    transition:0.3s;
}

.btn:hover {
    background: var(--primary-light);
    color: var(--secondary);
}
/* ===== End NAVBAR ===== */

/* ==== Header ==== */
header {
    padding-top:80px;
    height:100vh;
    /* background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('assets/images/tables/mega.png') center/cover no-repeat; */
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

header h1{
    font-family:'Playfair Display', serif;
    font-size:4rem;
    letter-spacing:3px;
}

header p{
    margin-top:20px;
    font-size:1.2rem;
    color:#ccc;
}

header button {
    background: none;
    margin-top:30px;
    padding:12px 30px;
    border:1px solid var(--primary-light);
    color: var(--primary);
    text-decoration:none;
    outline: none;
    cursor: pointer;
    transition:0.3s;    
}

header button:hover {
    background: var(--primary-light);
    color: var(--secondary);
}
/* ==== End Header ==== */

/* ==== Product ==== */
section {
    padding:80px 10%;
    min-height: 600px;
}

.section-title {
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:2.5rem;
    margin-bottom:50px;
    color:var(--primary-light);
}

.products {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
    gap:30px;
}

.card{
    color: #000;
    background:#ebebeb;
    border-radius:10px;
    overflow:hidden;
    transition:0.4s;
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card:hover{
    transform:translateY(-10px);
}

.card-content{
    padding:20px;
}

.card-content h3{
    margin-bottom:10px;
    font-family:'Playfair Display', serif;
}
/* ==== End Product ==== */

/* ==== About us ==== */
.about{
    color: #000;
    background-color: #ebebeb;
    border-radius:10px;
    padding:20px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
}

.about img{
    flex:1;
    max-width:500px;
    border-radius:10px;
}

.about-text{
    flex:1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}
/* ==== End about ==== */


/* ==== contact ==== */
.contact{
    background-color: #ebebeb;
    border-radius:10px; 
    padding:10px;   
    text-align:center;
}

.contact input,
.contact textarea{
    width:100%;
    max-width:500px;
    padding:10px;
    margin:10px 0;
    border:none;
    background: var(--light);
    color:var(--dark);
}

.phone-group{
    display:flex;
    gap:10px;
    justify-content:center;
    max-width:500px;
    margin:10px auto;
}

.country-code input{
    width:80px;
    padding:12px;
    border:none;
    text-align:center;
}

.phone-number{
    position:relative;
    flex:1;
}

.phone-number input{
    width:100%;
    padding:12px 12px 12px 40px;
    border:none;
}
/* ==== contact ==== */

/*======  Catalogue   =======*/
.catalogue {
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding-top: 5%;
}

.catalogue button {
    background: var(--primary-dark);
    color: var(--light);
    margin: 1%;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.catalogue button:hover {
    background: var(--primary-light);
    color: var(--secondary);
}
/*======  End Catalogue   =======*/

/*======  Footer   =======*/
footer {    
    background: var(--secondary);
    color:#ccc;
    padding:40px 20px;
    text-align:center;
}

.footer-container {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.footer-container h3{
    font-family:'Playfair Display', serif;
    margin-bottom:10px;
    color:#FFF5D7;
}

.footer-container img {
    height:50px;
    border-radius: 50%; 
    background-color: var(--light);
}

.footer-container p{
    font-size:14px;
    margin-bottom:20px;
}
/*======  End Footer   =======*/

/*======  social  =======*/
.social-icons {
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
}

.social-icons button {
    background: none;
    border:1px solid var(--primary-light);
    border-radius:50%;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.social {
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--primary-light);
    border-radius:50%;
    color: var(--primary-light);
    transition:0.3s;
}

.social:hover {
    background:var(--primary-light);
    color:var(--secondary);
    transform:translateY(-5px);
}
/*======  end social  =======*/

/*======  Developer tools   =======*/
.copyright{
    font-size:13px;
    color:#888;
}

.developer-credit{
    margin-top:15px;
    font-size:13px;
    color:#777;
}

.developer-credit a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.developer-credit a:hover{
    color: var(--primary-light);
}
/*======  End Developer tools   =======*/

/*======  PDF  =======*/
.pdf-container{
    width: 100%;
    height: 500px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
}

.pdf-container iframe{
    width:100%;
    height:100%;
    border:none;
}
/*======  End PDF   =======*/

/* ===== Contact Us ===== */
.success-message {
    background-color: #d4edda; 
    color: var(--success);           
    border: 1px solid #c3e6cb; 
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: 500;
}

.error {
    color: var(--error);           
    font-weight: 30;
}

.btn-primary-custom {
    background: #2563eb;
    color: var(--light);
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #1e4fd8;
}

.btn-primary-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.alert-info-custom {
    background-color: #e0f2fe;
    color: #075985;
    border: 1px solid #7dd3fc;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.alert-info-custom::before {
    content: "ℹ";
    font-weight: bold;
    margin-right: 8px;
}
/* ===== Contact Us ===== */


/* ==== Animation ==== */
.fade-in {
    animation: fadeIn 2s ease-in-out;    
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeText {
    from { opacity: 0; letter-spacing: 15px; }
    to { opacity: 1; letter-spacing: 8px; }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* ==== End Animation ==== */

/* ==== Responsive ==== */

@media(max-width:768px) {
    
    .nav-links {
        position:absolute;
        top:90px;
        right:0;
        background:rgba(22, 22, 22, 0.7);  /* rgba(255,245,215,0.6) */
        backdrop-filter: blur(10px);
        width:100%;
        flex-direction:column;
        text-align:center;
        max-height:0;
        overflow:hidden;
        transition:0.4s;
    }

    .nav-links button {
        color: var(--light);
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        outline: none;
        cursor: pointer;
    }

    .nav-links button:hover {
        padding:12px 30px;
        border-radius: 3px;       
        background: var(--primary-light);
        color: var(--secondary);
    }    

    .nav-links.active {
        max-height:400px;
        padding:20px 0;
    }

    .menu-toggle {
        display:block;
    }

    header h1 {
        font-size:2.5rem;
    }

    .phone-group {
        flex-direction:column;
    }
    .country-code input {
        width:100%;
    }

    .products {
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    }

}
/* ==== End Responsive ==== */