* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: #f9f5f0;
    color: #333;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    background: url('images/background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    animation: fadeIn 2.5s ease-in-out;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #d4a373;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery, .featured, .reviews, .contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #0b0b0b;
}

.gallery h2, .featured h2, .reviews h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #faf4f4;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item .overlay span {
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.featured-item {
    text-align: left;
    background: #f9f5f0;
    padding: 20px;
    border-radius: 10px;
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.featured-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-item p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.review-item {
    background: #f9f5f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.review-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.review-item span {
    font-weight: bold;
    color: #d4a373;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
    min-height: 150px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .gallery-item img {
        height: 200px;
    }
    .gallery h2, .featured h2, .reviews h2, .contact h2 {
        font-size: 2rem;
    }
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}