body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Modern, premium font */
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    z-index: 10;
}

.social-links a {
    color: #fff;
    font-size: 1.3em;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #8b5a2b; /* Rich tan */
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Light overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.6em;
    margin: 25px 0;
    font-weight: 300;
}

.btn {
    padding: 15px 45px;
    font-size: 1.2em;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #8b5a2b;
    border-color: #8b5a2b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Reviews Widget Section */
.reviews {
    padding: 80px 20px;
    background: #f5f5f5; /* Light background for contrast */
    text-align: center;
}

.reviews h2 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.reviews-widget {
    max-width: 1000px;
    margin: 0 auto;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.8s ease-in;
}

.slide-up {
    animation: slideUp 1.8s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

footer {
    text-align: center;
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9em;
    font-weight: 300;
}

footer .credit {
    margin-top: 5px;
    font-size: 0.8em;
    opacity: 0.7;
}

footer .credit a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .credit a:hover {
    color: #8b5a2b; /* Rich tan to match the theme */
}