/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto:wght@400;500;700&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #fdf6f0, #fff);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: relative;
    text-align: center;
    padding: 60px 20px 40px;
    background: radial-gradient(circle at top, #fff8f0, #ffeecd);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    animation: shimmer 6s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg) translateX(0);
    }
    100% {
        transform: rotate(360deg) translateX(0);
    }
}

header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #bfa14b;
/*    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);*/
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #6b5b3b;
}

/* Logo Image */
#logo {
    width: 350px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bfa14b;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #bfa14b);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About & Services */
p, li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #4b3f2f;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Testimonials */
#testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

blockquote {
    background: rgba(255, 223, 0, 0.05);
    padding: 20px;
    border-left: 5px solid #bfa14b;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '“';
    font-size: 3rem;
    color: #ffd700;
    position: absolute;
    top: -10px;
    left: 10px;
}

cite {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-style: normal;
    color: #6b5b3b;
}

/* Gallery */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,215,0,0.6);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(145deg, #ffd700, #bfa14b);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 15px 0;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.6);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #f9f4ec;
    color: #6b5b3b;
    font-size: 0.9rem;
}
/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #d4af37; /* gold */
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Brand colors on hover */
.social-icons a.facebook:hover { background: #3b5998; }
.social-icons a.instagram:hover { background: #E1306C; }
.social-icons a.twitter:hover { background: #1DA1F2; }
.social-icons a.linkedin:hover { background: #0077b5; }
.social-icons a.whatsapp:hover { background: #25D366; }
