| <!DOCTYPE html> |
| <html lang="sv"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Profil | Alexander Adolfsson Coaching</title> |
| <link rel="stylesheet" href="style.css"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| .profile-hero { |
| background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), |
| url('http://static.photos/fitness/1200x630/42'); |
| background-size: cover; |
| background-position: center; |
| height: 60vh; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| text-align: center; |
| color: white; |
| padding: 0 20px; |
| } |
| .profile-content { |
| max-width: 1000px; |
| margin: 50px auto; |
| padding: 0 20px; |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
| gap: 50px; |
| align-items: center; |
| } |
| .profile-image { |
| border-radius: 10px; |
| box-shadow: 0 5px 15px rgba(0,0,0,0.2); |
| max-width: 100%; |
| } |
| .qualifications { |
| margin-top: 30px; |
| } |
| .qualification-item { |
| margin-bottom: 15px; |
| display: flex; |
| align-items: center; |
| } |
| .qualification-item i { |
| margin-right: 10px; |
| color: #10b981; |
| } |
| </style> |
| </head> |
| <body> |
| <custom-navbar></custom-navbar> |
|
|
| <section class="profile-hero"> |
| <div> |
| <h1>Alexander Adolfsson</h1> |
| <p>Licensierad personlig tränare & kostrådgivare</p> |
| </div> |
| </section> |
|
|
| <section class="profile-content"> |
| <div> |
| <img src="https://res.cloudinary.com/dttivz1il/image/upload/v1770079671/530312918_2055614884970852_6024544081288430228_n_vf9xgb.jpg" alt="Alexander Adolfsson" class="profile-image"> |
| </div> |
| <div> |
| <h2>Om mig</h2> |
| <p>Jag är licenserad personlig tränare & kostrådgivare med över 15 års erfarenhet. Jag hjälper dig bygga hållbara vanor som ger långsiktiga resultat – utan snabba lösningar.</p> |
| |
| <div class="qualifications"> |
| <div class="qualification-item"> |
| <i class="fas fa-certificate"></i> |
| <span>Licensierad Personlig Tränare</span> |
| </div> |
| <div class="qualification-item"> |
| <i class="fas fa-certificate"></i> |
| <span>Certifierad Kostrådgivare</span> |
| </div> |
| <div class="qualification-item"> |
| <i class="fas fa-clock"></i> |
| <span>15+ års erfarenhet</span> |
| </div> |
| <div class="qualification-item"> |
| <i class="fas fa-leaf"></i> |
| <span>Specialist på hållbara vanor</span> |
| </div> |
| </div> |
|
|
| <a href="https://calendly.com/alexander-pt-adolfsson/new-meeting" class="btn" target="_blank" style="display: inline-block; margin-top: 30px;">Boka konsultation</a> |
| </div> |
| </section> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| </body> |
| </html> |