body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #d4af37;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #000;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #d4af37;
}

header img {
    height: 60px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #fff;
}

.hero {
    background: url('photos/dded38016f01378902d768d78d5ff10b.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    font-size: 48px;
    margin: 0;
    color: #fff;
}

.hero p {
    font-size: 20px;
    margin: 15px 0;
}

.hero button {
    padding: 15px 30px;
    font-size: 18px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.hero button:hover {
    background: #fff;
    color: #000;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

section h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #444;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #666;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #222;      
    color: #fff;                  
    text-align: center;          
    padding: 20px;               
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

footer a {
    color: #ff4d4d;              
    text-decoration: none;       
    transition: color 0.3s;
}

footer a:hover {
    color: #ffa07a;            
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.floating-buttons a:hover {
    background: #fff;
    color: #000;

}

