Changed around line 1
+ :root {
+ --primary-color: #8b4513;
+ --accent-color: #722f37;
+ --background: #fff8e7;
+ --text-color: #333;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
+ color: white;
+ padding: var(--spacing);
+ min-height: 60vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(139, 69, 19, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #ffd700, #ff8c00);
+ -webkit-background-clip: text;
+ color: transparent;
+ transition: transform 0.3s ease;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .character {
+ text-align: center;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .character img {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ margin-bottom: 2rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: var(--spacing);
+ padding: var(--spacing);
+ }
+
+ .gallery-item {
+ background: white;
+ padding: var(--spacing);
+ border-radius: 1rem;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .gallery-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: var(--spacing);
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ border: 2px solid var(--primary-color);
+ border-radius: 0.5rem;
+ background: rgba(255,255,255,0.9);
+ }
+
+ button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ padding: 1rem;
+ }
+
+ .nav-links {
+ margin-top: 1rem;
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+
+ .gallery-grid {
+ grid-template-columns: 1fr;
+ }
+ }