/* General Styling */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #fff;
    scroll-behavior: smooth;
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h3 { color: white; margin: 0; }
header nav a { color: white; margin-left: 20px; text-decoration: none; font-size: 14px; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 3rem; max-width: 800px; margin-bottom: 30px; }

.btn-cta {
    background: #c0392b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta:hover { background: #e74c3c; transform: translateY(-3px); }

/* Gallery */
.filter-buttons { text-align: center; margin-bottom: 30px; }
.filter-btn {
    padding: 8px 20px;
    margin: 5px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 20px;
}
.filter-btn.active { background: #333; color: white; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-item img:hover { filter: brightness(0.8); }

/* 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 img { max-width: 90%; max-height: 80%; border: 5px solid white; }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: white; font-size: 40px; cursor: pointer; }

/* About Me */
.about-content { display: flex; align-items: center; margin-top: 30px; gap: 40px; }
.profile-img { width: 350px; border-radius: 15px; }
.benefit-list { padding-left: 20px; margin-top: 15px; }

/* Promo */
.promo-card { position: relative; border-radius: 15px; overflow: hidden; }
.promo-info {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: white; text-align: center;
}

/* Footer */
.footer { background: #1a1a1a; color: white; text-align: center; padding: 40px 20px; }
.social-links { margin-top: 20px; }
.social-links a { color: white; margin: 0 10px; text-decoration: none; border: 1px solid white; padding: 8px 15px; border-radius: 5px; }