/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base typography */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header and Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
/* Navigation links */
nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
nav a:hover {
  color: #007bff;
}

/* Container to center content */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

/* Hero section on start page */
.hero {
  /* Background image of Alhambra */
  background: url('https://cdn-imgix.headout.com/media/images/58da77effa54b9c430bbabfd2a54f135-Alhambra%20Granada.jpeg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Section headings */
h2 {
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #f8f8f8;
  margin-top: 2rem;
}