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

body {
    font-family: 'Inter', sans-serif;
    color: #2b2b2b;
    background-color: #fafafa;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
}

nav a {
    margin-left: 1.8rem;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #000;
}

.btn-nav {
    background-color: #111;
    color: #fff !important;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #333;
}

/* Hero Section */
.hero {
    height: 75vh;
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #cccccc;
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: #ffffff;
    color: #111;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background-color: #e2e2e2;
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #fff;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section styling */
.section {
    padding: 5rem 5%;
}

.bg-light {
    background-color: #f2f2f2;
}

.bg-dark {
    background-color: #111;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-size: 1rem;
}

.text-white p {
    color: #bbb;
}

/* Gallery Grid */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background-color: #fff;
}

.img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 1.5rem 1rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.overlay p {
    font-size: 0.85rem;
    color: #ddd;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.card.featured {
    border: 2px solid #111;
    transform: translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 0.2rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
}

.card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.btn-card {
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-card:hover, .btn-featured {
    background: #111;
    color: #fff;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Contact Form */
.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    color: #111;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #e0e0e0;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #0a0a0a;
    color: #777;
    font-size: 0.85rem;
}
