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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero {
    position: relative;
    height: 100vh;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: #e64a19;
    color: white;
}

.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.btn:hover {
    transform: scale(1.05);
}

section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery img {
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

footer {
    background: #222;
    color: #ddd;
    padding: 40px;
    font-size: 0.9rem;
}

footer a {
    color: #e64a19;
}

@media (max-width:768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}

/* Gallery zoom effect */
.gallery img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img.zoomed {
    transform: scale(2.2);
    z-index: 999;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
}

/* Double tap to exit zoom on mobile */
@media (max-width: 768px) {
    .gallery img.zoomed {
        transform: scale(1.8);
    }
}