/* Custom Styles for ARKA Makeover Studio */

/* Fonts */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Colors */
:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #FFB6C1; /* Light Pink */
    --accent-color: #FFC0CB; /* Pink */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #ffffff;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-color);
}

.btn-light:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
    color: var(--dark-color);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* Feature Icons */
.feature-icon, .contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 1rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.gallery-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    background: var(--light-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-icon, .contact-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .masonry-gallery {
        column-count: 1;
    }

    .hero-section {
        height: 45vh;
        padding: 1rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .hero-section .lead {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn-primary, .btn-light {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .feature-icon, .contact-icon {
        font-size: 2rem;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }

    .mb-4 {
        margin-bottom: 1.25rem !important;
    }

    .py-5 {
        padding: 2rem 0;
    }

    .card {
        margin-bottom: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        height: 45px !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar-brand {
    padding: 0;
    text-decoration: none;
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
    color: #B8860B;
}

.navbar-brand img {
    height: 60px !important;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: normal;
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px !important;
        max-width: 150px;
        padding: 3px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 45px !important;
        max-width: 120px;
        padding: 2px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
}

/* Gallery Styles */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gallery-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.gallery-link img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-card:hover .gallery-link img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lightbox customization */
.glightbox * {
    box-sizing: border-box;
}

.gslide-image img {
    max-height: 90vh;
}


/* Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive social links */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}