/*
Theme Name: Art Academy Theme
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: A simple custom theme for an Art Academy.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: art-academy
*/

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header Styles */
.site-header {
  text-align: center;
  padding: 2rem 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.main-logo {
  max-width: 150px;
  height: auto;
}

.text-logo {
  max-width: 200px;
  height: auto;
}

/* Main Content Styles */
.site-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-section {
  padding: 4rem 1rem;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.hero-section p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

/* Map Section */
.location-section {
  margin-top: 2rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  color: #999;
  font-size: 0.9rem;
}
