/*
Theme Name: Ali Carpenter Pro
Theme URI: https://kamar.com.mybuyer.site/
Author: Kamar Ali
Description: Professional Woodwork WordPress Theme - Full Gallery + Animated WhatsApp
Version: 2.0
*/

:root {
    --primary-color: #f39c12; 
    --dark-color: #1a1a1a;
    --light-text: #ecf0f1;
    --body-bg: #fdfdfd;
    --card-bg: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--body-bg);
    color: var(--dark-color);
}

header {
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(44,62,80,0.85)),
                url('https://images.unsplash.com/photo-1581421300552-3395c7794350');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 30%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 0 25px rgba(243,156,18,0.7);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.business-name {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-top: 20px;
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 40px;
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    animation: pulse 1.8s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
