/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;600&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    --teal: #00798c;
    --brown: #8b4513;
    --pink: #ff6b6b;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 60%, rgba(0, 121, 140, 0.5) 100%);
    z-index: 1;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Gallery */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

@media (max-width: 768px) {
    .floating-call {
        display: block;
    }
}

/* Menu Links */
.menu-link {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    transition: all 0.3s ease-in-out;
    transform-origin: left;
}

.menu-link:hover::after,
.active-nav::after {
    width: 100%;
}

.active-nav {
    position: relative;
}

.active-nav::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1e40af, #1e3a8a);
}
