/*
Theme Name: Anna Plain
Theme URI: http://example.com
Author: Your name
Author URI: http://pinegrow.com/
Description: This theme was created with Pinegrow Web Editor
Version: 1.0.40
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anna
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #1a1a1a;
  --accent: #d4af37;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.9)),
    url("https://buddhavgorode.com/wp-content/uploads/2017/05/героиды-анна-сафо.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.hero .accent-line {
  width: 100px;
  height: 1px;
  background: var(--accent);
  margin: 2rem auto;
}

/* Section Styles */
section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--accent);
}

/* Work Section */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary-bg);
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: translateY(-5px);
}

.work-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3);
  transition: all 0.5s ease;
}

.work-item:hover .work-image {
  filter: grayscale(0);
  transform: scale(1.05);
}

.work-info {
  padding: 2rem;
}

.work-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.work-year {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.work-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Practice Section */
.practice-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.practice-content p {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.techniques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.technique-item {
  text-align: center;
  background: var(--secondary-bg);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.technique-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.technique-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--primary-bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent);
}

.technique-name {
  color: var(--text-primary);
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-weight: 400;
}

.technique-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

/* Contact Section */
.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-btn {
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background: var(--accent);
  color: var(--primary-bg);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--secondary-bg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav .container {
    padding: 1rem 1.5rem;
  }

  nav .logo {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-image {
    height: 300px;
  }

  .work-info {
    padding: 1.5rem;
  }

  .work-title {
    font-size: 1.5rem;
  }

  .techniques {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .technique-item {
    padding: 1.5rem 1rem;
  }

  .technique-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .technique-description {
    font-size: 0.85rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-btn {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav .logo {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 0.7rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .work-image {
    height: 250px;
  }
}
