/* --- Modern Gradient Theme --- */
:root {
    --primary-color: #007BFF; /* Bright Blue */
    --secondary-color: #00C6A7; /* Teal */
    --text-dark: #212529;
    --text-light: #6c757d;
    --background-card: #ffffff;
    --white: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.7;
}
.container { max-width: 800px; margin: 0 auto; padding: 25px; }
h1, h2 { color: var(--text-dark); margin-bottom: 1rem; font-weight: 700; }
h1 { font-size: 2.3rem; }
h2 { font-size: 1.8rem; border-bottom: 3px solid var(--primary-color); display: inline-block; padding-bottom: 8px; margin-top: 2rem; }
a { color: var(--primary-color); text-decoration: none; transition: all 0.3s; }
a:hover { opacity: 0.7; }

/* --- Card Layout --- */
.card { background-color: var(--background-card); padding: 35px; border-radius: var(--border-radius); box-shadow: var(--shadow); margin-bottom: 30px; }

/* --- Hero Section --- */
.hero { text-align: center; }
.profile-pic { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 5px solid var(--white); box-shadow: 0 0 25px rgba(0, 0, 0, 0.15); margin-bottom: 20px; }
.hero h1 { margin-bottom: 8px; }
.hero .title { font-size: 1.1rem; color: var(--text-light); margin-bottom: 20px; }

/* --- Custom Translate Buttons --- */
.lang-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.lang-btn {
    padding: 6px 16px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-btn.active, .lang-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Hide all Google Translate default widgets, banners, and tooltips */
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.skiptranslate > iframe,
#goog-gt-tt, 
.goog-te-balloon-frame { 
    display: none !important; 
}
body { 
    top: 0px !important; 
    position: static !important; 
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* --- Action Buttons --- */
.action-buttons { display: flex; justify-content: center; gap: 20px; width: 100%; margin-bottom: 35px; }
.action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 25px; border: none; background-color: var(--primary-color); color: var(--white); border-radius: var(--border-radius); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; flex-grow: 1; max-width: 220px; box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2); }
.action-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3); }
.action-btn.secondary { background-color: #f8f9fa; color: var(--text-dark); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.action-btn.secondary:hover { background-color: #eef1f2; }
.action-btn svg { margin-left: 10px; width: 18px; height: 18px; }

/* --- Contact Links --- */
.contact-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 35px; text-align: center; align-items: center; }
.contact-link { display: flex; flex-direction: column; align-items: center; color: var(--text-light); font-weight: 600; font-size: 0.85rem; }
.contact-link svg { width: 28px; height: 28px; margin-bottom: 8px; color: var(--text-dark); transition: color 0.3s; }
.contact-link:hover svg { color: var(--primary-color); }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-top: 20px; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--border-radius); cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

/* --- Modal Styles --- */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; padding: 20px; }
.modal-content { background-color: var(--white); padding: 35px; border-radius: var(--border-radius); box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); width: 90%; max-width: 500px; position: relative; }
.close-btn { color: #aaa; position: absolute; top: 15px; right: 20px; font-size: 32px; font-weight: bold; cursor: pointer; z-index: 1001; }
.close-btn:hover { color: var(--text-dark); }
#lightbox .modal-content { background: transparent; width: auto; max-width: 90%; padding: 0; box-shadow: none; }
#lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--border-radius); }
#lightbox .close-btn { color: var(--white); top: 15px; right: 35px; font-size: 40px; }

/* --- Form Styles --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: var(--border-radius); font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; padding: 15px; border: none; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; font-size: 1.1rem; font-weight: bold; border-radius: var(--border-radius); cursor: pointer; transition: opacity 0.3s; }
.submit-btn:hover { opacity: 0.9; }

/* --- Footer & Responsive --- */
.footer { text-align: center; padding: 25px; font-size: 0.9rem; color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.footer a { color: var(--white); font-weight: bold; }
@media (max-width: 600px) {
    h1 { font-size: 2rem; } h2 { font-size: 1.6rem; }
    .card { padding: 25px; }
    .action-buttons { flex-direction: column; align-items: center; }
    .action-btn { width: 100%; max-width: 280px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
