
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(21, 91, 106);
    text-align: center;
    line-height: 18pt;
}

#sacrix {
    position: relative;
    margin-bottom: 500px;
    padding: 20px;
}

#circleAnimation {
position: absolute;
  animation: growAndMove 8s ease-in-out forwards;
}

#blue_text {
    color: #92F6F0;
}

.gallery {
	display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10em, 1fr));
  gap: 1em;
  padding: 1em;
  width: 34%;
  margin: 0 auto;
  background: white;		
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

#credits {
    color: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    font-size: 8pt;
    margin-bottom: 50px;
}

#contacts {
	padding-top: 20px;
    letter-spacing: 5px;
   color: rgb(255, 255, 255);
	font-size: 10px;
}

#contact_biz { 
    font-size: 8pt;
    color:   rgb(223, 200, 160); 
}

#copyrigths {
  font-size: 8pt;
  color:   rgb(223, 200, 160);
}

#intro {
	text-align: center;
	color: (223, 200, 160);
}

#built_scratch {
	color:bisque;
}

#social_media {
	display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Aligns buttons to the left */
}


h1 {
    letter-spacing: 5px;
    color:   rgb(223, 200, 160);
}

h2 {
    letter-spacing: 5px;
    color:  rgb(223, 200, 160);
}

h3 {
    letter-spacing: 5px;
    color:rgb(223, 200, 160);
    font-weight: lighter;
}

footer {
    animation: footer-load var(--load-time) ease-in-out;
}

p {
	color: white;
} 

.social-button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-button-row button {
  all: unset;
  padding: 10px 20px;
  border: 1px solid #f5deb3; /* light tan color from your page */
  border-radius: 6px;
  color: #f5deb3;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.social-button-row button:hover {
  background: #f5deb3;
  color: #0e4a57; /* your page's BG tone for contrast */
}


main {
    display: flex;
    flex-direction: column;    
    max-width: 100vw;
}

header {
    display: inline-block;
    flex-direction: row;  
	
}

button {
    letter-spacing: 5px;
    display: inline-block;
    text-decoration: none;
    background-color: rgb(223, 200, 160);
    border-radius: 25px;
    transition: background-color 0.3s ease;
    max-width: 100vw;
    padding: 10pt;
    font-family: Arial, Helvetica, sans-serif;
    max-height: 100%;
  }

  button:hover {
    background-color: rgb(223, 200, 160);
    color:  #92F6F0;
    letter-spacing: 5px;
  }

a {
    color: rgb(223, 200, 160); 
}

a:hover {
    color:  #92F6F0;
  }

  nav ul {
    padding: 0;
  }

  nav li {
    list-style: none;
    display: inline;
    margin-right: 20px;
  }

  nav a {
    color: #000;
    text-decoration: none;
  }

  /* logo on top animation */
#S_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

#A_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

#C_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

#R_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

#I_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

#X_letter {
    position:absolute;
    animation: strechAndStay 1s ease-in-out forwards;
}

  /* animations */

@keyframes body {
    100% {  transform: scale(100%); }
    120% {   transform: scale(120%); }
    0% {     transform: scale(0);   }
}

@keyframes footer-load {
    0% {  transform: translateY(100%)   }
    100% { transform: translateY(0%) ;  }
}

@keyframes strechyPic {
    0% { transform: scale(0); } 
    50% { transform: scaleX(2); } 
    100% { transform: scaleX(1); }
}

@keyframes strechAndStay {
    0%, 100% { transform: scaleY(1); }
    10% { transform: scaleY(100); } 
}

@keyframes growAndMove {
  0% { transform: scale(1); }
  10% { transform: scale(10); } 
  80% { transform: translateY(1000px) scale(1); }
  100% { transform: translateY(0px) scale(1); }
}

.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.copyable:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.copyable:active {
    transform: scale(0.95);
}

/* Toast notification style */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(21, 91, 106);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.copy-toast.show {
    opacity: 1;
}


.hero-swiper {
  position: relative;
  width: 100%;
  height: 500px; /* adjust to your hero height */
  overflow: hidden;
}

.hero-swiper .swiper-container {
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .slide-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 4px;
}

/* override default swiper arrow styles if needed */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  /* optionally, increase size, background, etc. */
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}
