/* Update these color variables at the top of your CSS file */
:root {
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-gold: #d4af37;
  --light-gray: #f8f8f8;
  --dark-gray: #333333;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  height: 80px;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-black);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-white);
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none;
  transform: translateZ(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--primary-white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.book-btn {
  background: var(--accent-gold);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: var(--primary-black) !important;
  font-weight: 500;
  transition: all 0.3s ease !important;
}

.book-btn:hover {
  background: var(--primary-white);
  color: var(--primary-black) !important;
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: var(--primary-white);
  transition: all 0.3s ease;
}

/* Responsive Navigation */
@media screen and (max-width: 992px) {
  .nav-links {
    display: none; /* Hide by default on mobile */
    position: fixed;
    top: 80px; /* Height of nav bar */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links.active {
    display: flex; /* Show when active */
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: var(--primary-white);
    transition: all 0.3s ease;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

@media screen and (max-width: 576px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    height: 40px; /* Smaller size for mobile */
  }

  .nav-links {
    width: 100%;
  }

  .book-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/angstore.png") no-repeat center center/cover;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.cta-button {
  padding: 15px 40px;
  font-size: 1.2rem;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #c49b3c;
}

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

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

/* Responsive design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Services Section */
#services {
  padding: 5rem 10%;
  background: var(--primary-white);
  color: var(--primary-black);
}

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

.service-card {
  background: var(--light-gray);
  backdrop-filter: blur(10px);
  border: 1px solid #eee;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--primary-black);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* Gallery Section */
#about {
  padding: 120px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 100%
    ),
    url("https://source.unsplash.com/random/1920x1080/?luxury-spa") center/cover;
  opacity: 0.15;
  z-index: 0;
  animation: slowZoom 20s infinite alternate;
}

#about h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 4rem;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.about-text {
  grid-column: 1 / -1;
  font-size: 1.2rem;
  line-height: 2;
  color: #fff;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--accent-gold);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.about-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.about-container div {
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.about-container div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.about-container div:hover::before {
  transform: translateX(100%);
}

.about-container div:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.about-container h2 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-bottom: 15px;
}

.about-container p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Fancy icons */
.about-container div::after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  background: linear-gradient(45deg, var(--accent-gold), #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.about-container div:hover::after {
  transform: scale(1.2);
  opacity: 0.4;
}

/* Add new animations */
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* Add glowing effect on hover */
.about-container div:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Keep existing media queries and add some enhancements */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #about h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  #about {
    padding: 80px 20px;
  }

  #about h2 {
    font-size: 2.5rem;
  }
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Contact Section with Grid Layout */
#contact {
  background: var(--light-gray);

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  padding: 2rem;
  gap: 2rem;
  color: var(--primary-black);
}

#contact h2 {
  color: #111010;
  font-size: 3rem;
  text-align: center;
  padding-top: 4rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.contact-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  gap: 4rem;
  padding: 4rem 2rem;
  background: var(--primary-black);
  color: var(--primary-white);
}

/* Info section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

/* Form section */
.contact-form {
  flex: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}

/* Large Screens */
@media screen and (max-width: 1400px) {
  .contact-container {
    max-width: 95%;
    gap: 3rem;
  }
}

/* Medium Screens */
@media screen and (max-width: 1200px) {
  .contact-container {
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .contact-card {
    flex-basis: calc(50% - 1rem);
    min-width: 250px;
  }

  .contact-form {
    width: 100%;
    padding: 2rem;
  }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
  .contact-container {
    padding: 2rem 0.5rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-card {
    flex-basis: 100%;
  }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
  .contact-container {
    padding: 1rem 0.5rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .contact-info {
    gap: 0.8rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* Form responsiveness */
@media screen and (max-width: 576px) {
  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.9rem;
  }

  .form-group input:focus ~ label,
  .form-group input:valid ~ label,
  .form-group textarea:focus ~ label,
  .form-group textarea:valid ~ label {
    font-size: 0.8rem;
  }
}

/* Ensure smooth transitions */
.contact-container,
.contact-info,
.contact-form,
.contact-card {
  transition: all 0.3s ease;
}

/* Contact Info Cards */

.contact-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
}

.contact-card h3 {
  font-size: 1.4rem;
  color: var(--primary-white);
}

.contact-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Form Styling */
.contact-form {
  background: var(--primary-white);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--primary-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.5rem;
  background: #000000;
  color: #ffffff;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent-gold);
  color: var(--primary-white);
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.submit-btn:hover {
  background: var(--primary-black);
  border-color: var(--primary-black);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 8px;
  transform: translateX(200%);
  transition: transform 0.3s ease;
}

.success-message.show {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 3fr;
    gap: 2rem;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 4rem 0;
  }

  #contact h2 {
    font-size: 2.5rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #contact h2 {
    font-size: 2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1rem;
  }

  .submit-btn {
    padding: 1rem;
  }
}

/* Footer */
footer {
  background: var(--primary-black);
  color: var(--primary-white);
  padding: 3rem 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero p {
    font-size: 1.2rem;
  }
}

/* Additional elegant touches */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--text-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-medium);
}

/* Form placeholder color */
::placeholder {
  color: var(--gray-medium);
}

/* Selection color */
::selection {
  background: var(--text-light);
  color: var(--text-dark);
}

/* Price tags */
.price {
  color: var(--accent-gold);
  font-weight: bold;
}

/* Hover effects */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Service cards hover effect */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Gallery hover effects */
.about-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-item:hover::after {
  opacity: 1;
}

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

.service-card,
.about-item,
.contact-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Extra Large Screens */
@media screen and (min-width: 1400px) {
  .contact-info {
    gap: 3rem;
  }

  .contact-card {
    padding: 3rem 2.5rem;
  }
}

/* Large Screens */
@media screen and (max-width: 1200px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Medium Screens */
@media screen and (max-width: 992px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }
}

/* Small Tablets */
@media screen and (max-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-card {
    padding: 1.8rem 1.5rem;
  }

  .contact-card i {
    font-size: 2.2rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .contact-card p {
    font-size: 1rem;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 576px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    max-width: 100%;
    padding: 1.5rem;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 380px) {
  .contact-info {
    gap: 0.8rem;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .contact-card i {
    font-size: 2rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }
}

/* Hover Effects */
.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for cards */
.contact-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.4s;
}
.contact-card a,
.footer-section a {
  text-decoration: none;
  color: inherit;
}
.contact-card {
  cursor: pointer;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-container h4 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 1px;
}

.about-container h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.about-container h4::before {
  content: "✧";
  position: absolute;
  left: -25px;
  color: var(--accent-gold);
  opacity: 0.5;
  font-size: 1.2rem;
}

/* Add hover effect */
.about-container div:hover h4 {
  transform: translateX(10px);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-container h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-container h4 {
    font-size: 1.3rem;
  }
}
