/* GENERAL SETTINGS */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

:root {
    --gold: #C9A14A;
    --dark: #333;
    --light: #f4f4f4;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .logo {
    font-weight: 700;
    color: var(--gold);
    font-size: 24px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: var(--gold);
    font-weight: 600;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: var(--dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid var(--gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 80%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero p {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 25px;
}

.btn-group {
    margin-top: 25px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin: 0 10px;
    transition: background 0.3s, color 0.3s;
}

.gold-btn {
    background: var(--gold);
    color: white;
}

.gold-btn:hover {
    background: #a8823a;
}

.outline-btn {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.outline-btn:hover {
    background: var(--gold);
    color: white;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
}

/* SPECIALTIES */
.specialties ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.specialties li {
    padding: 8px 0;
    font-size: 18px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* CONTACT */
.contact p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background: var(--light);
    color: var(--gold);
    border-top: 2px solid var(--gold);
    font-weight: 600;
}

/* FLOATING WHATSAPP BUTTON */
.float-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

.float-whatsapp img {
    width: 40px;
}

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

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

