
/*
Theme Name: NNN Beauty Salon
Theme URI: https://readdy.ai
Author: Readdy
Author URI: https://readdy.ai
Description: A minimalist beauty salon theme for NNN
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nnn-salon
*/

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F5F1ED;
}

/* Animations */
@keyframes zoomIn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-zoom {
  animation: zoomIn 20s ease-in-out infinite alternate;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

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

/* Navigation */
.nav-scrolled {
  background-color: #F5F1ED !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .nav-text {
  color: #1A1A1A !important;
}

.nav-scrolled .menu-line {
  background-color: #1A1A1A !important;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: #F5F1ED;
  z-index: 40;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hover Effects */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .text-6xl {
    font-size: 3rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
  
  .text-4xl {
    font-size: 2rem;
  }
  
  .text-3xl {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.cursor-pointer {
  cursor: pointer;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.object-cover {
  object-fit: cover;
}

.object-top {
  object-position: top;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  position: relative;
}

/* Button Styles */
button, .button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Form Elements */
input, textarea, select {
  font-family: inherit;
}
