@font-face {font-family:'Federant'; src:url(fonts/Federant-Regular.woff) format("woff"), src:url(fonts/Federant-Regular.woff2) format("woff2");}
@font-face {font-family:'Archetects Daughter'; src:url(fonts/ArchitectsDaughter-Regular.woff) format("woff"), src:url(fonts/ArchitectsDaughter-Regular.woff2) format("woff2");}
@font-face {font-family:'Verdana'; src:url(fonts/Verdana.woff) format("woff"), src:url(fonts/Verdana.woff2) format("woff2");}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Verdana' !important;
  font-size: 24px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background-attachment: fixed;
  color: #1a1a1a;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 25s infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.3);
  top: -15%;
  left: -15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(240, 147, 251, 0.4);
  top: 40%;
  right: -10%;
  animation-delay: 8s;
}

.shape-3 {
  width: 700px;
  height: 700px;
  background: rgba(245, 87, 108, 0.3);
  bottom: -20%;
  left: 25%;
  animation-delay: 16s;
}

.shape-4 {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.2);
  top: 20%;
  left: 50%;
  animation-delay: 12s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(60px, -60px) scale(1.15) rotate(90deg);
  }
  50% {
    transform: translate(-40px, 40px) scale(0.85) rotate(180deg);
  }
  75% {
    transform: translate(40px, 60px) scale(1.1) rotate(270deg);
  }
}

/* Gradient Text Effect */
.gradient-text mark {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(30deg) brightness(1.2); }
}

/* Logo Animation */
.logo-container {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.main-logo {
  animation: logoFloat 8s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 15px 40px rgba(245, 87, 108, 0.5));
}

.main-logo:hover {
  transform: scale(1.08) rotateY(15deg);
  filter: drop-shadow(0 20px 60px rgba(245, 87, 108, 0.8));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) rotateZ(0deg);
  }
  50% {
    transform: translateY(-25px) rotateZ(3deg);
  }
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 15px 40px rgba(245, 87, 108, 0.5));
  }
  50% {
    filter: drop-shadow(0 20px 60px rgba(245, 87, 108, 0.8));
  }
}

/* Typography */
cardtitle {
  font-family: "Federant" !important;
  font-size: 28px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

mark {
  background-color: rgba(0, 0, 0, 0.0);
  color: #1a1a1a;
  font-family: "Federant" !important;
  padding: 0.0em 0.25em;
}

.tagline {
  text-align: center;
  font-size: 28px;
  margin-top: 20px 0;
  color: darkslategray;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

/* Enhanced Buttons */
button {
  font-family: "Federant" !important;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  font-size: 22px;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  margin: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 350px;
  height: 350px;
}

button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.7);
}

button:active {
  transform: translateY(-1px);
}

.highlight-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(118, 75, 162, 0.8);
  }
}

/* Container */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  overflow: hidden;
}

.main-wrapper {
  padding: 40px 80px;
}

/* Titles */
.title, .title3 {
  font-size: 50px;
  text-align: center;
  padding: 40px 0 20px;
  position: relative;
  animation: slideInFromTop 0.8s ease-out;
}

.title::after, .title3::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 3px;
  animation: expandWidth 1s ease-out 0.5s backwards;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 120px; }
}

.title2 {
  font-size: 100px;
  text-align: center;
}

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

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

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fade-in-visible {
  from {
    opacity: 1;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.animate-fadeIn {
  animation: fadeInUp 1s ease-out;
}

/* Home Section */
.home {
  padding: 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-top: 80px;
  margin-bottom: 0px;
  animation: slideInFromTop 0.8s ease-out 0.3s backwards;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
}

.nav-btn {
  margin: 5px;
}

.btn-content {
  position: relative;
  z-index: 1;
}

/* Our Mission */
.ourmission2 {
  padding: 60px 0;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 50%;
}

.mission-content p {
  margin: 20px 0;
  line-height: 1.4;
  font-size: 20px;
}

/* Image Gallery */
.samples2, .moresamples2 {
  padding: 60px 0;
  text-align: center;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 30%;
}

.samples2 p, .moresamples2 p {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.4;
}

.gallery-note {
  font-style: italic;
  color: black;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 40%;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay span {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(245, 87, 108, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Photo Examples */
.uploadyourpics2 {
  padding: 60px 0;
  text-align: center;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 30%;
}

.uploadyourpics2 p {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.4;
}

.photo-examples {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.photo-example-item {
  text-align: center;
  transition: transform 0.4s ease;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 40%;
}

.photo-example-item:hover {
  transform: translateY(-15px);
}

.photo-example-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
}

.photo-example-item:hover a {
  box-shadow: 0 15px 45px rgba(245, 87, 108, 0.5);
}

.photo-example-item img {
  height: 240px;
  width: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.photo-example-item:hover img {
  transform: scale(1.1);
}

.photo-label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #f5576c;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

    .moresamples img {border-radius: 24px;}


/* Pricing Section */
.ratesandpayment2 {
  padding: 60px 0;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 30%;
}

.ratesandpayment2 > p {
  margin: 20px 0 40px;
  font-size: 20px;
  line-height: 1.4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 3px solid rgba(245, 87, 108, 0.3);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 30%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 147, 251, 0.15), transparent);
  transition: left 0.7s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.hover-lift:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 70px rgba(245, 87, 108, 0.4);
  border-color: rgba(245, 87, 108, 0.6);
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid rgba(245, 87, 108, 0.2);
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 20px 35px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
  transition: transform 0.3s ease;
}

.pricing-card:hover .price-badge {
  transform: scale(1.1) rotate(5deg);
}

.currency {
  font-size: 28px;
  margin-right: 5px;
}

.amount {
  font-size: 56px;
  font-weight: bold;
  font-family: "Federant";
}

.pricing-content {
  text-align: left;
  font-size: 18px;
}

.package-features {
  margin: 25px 0;
  padding: 20px;
  background: rgba(240, 147, 251, 0.08);
  border-radius: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  color: #f5576c;
  flex-shrink: 0;
}

.feature span {
  font-size: 16px;
  color: #333;
}

.pricing-content p {
  margin: 20px 0;
  line-height: 1.4;
}

.purchase-link {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.purchase-link img {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.purchase-link:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 8px 25px rgba(245, 87, 108, 0.6));
}

/* Contact Section */
.contact2 {
  padding: 80px 0;
  text-align: center;
  opacity: 1;
  animation: fade-in-visible linear forwards;
  animation-timeline: view(block);
  animation-range: entry 0% cover 30%;
}

.contact2 p {
  font-size: 22px;
  margin: 25px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.social-link {
  display: inline-block;
  transition: transform 0.4s ease;
}

.social-link:hover {
  transform: translateY(-12px) scale(1.15) rotate(5deg);
}

.social-link img {
  transition: filter 0.4s ease;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
}

.social-link:hover img {
  filter: drop-shadow(0 12px 35px rgba(245, 87, 108, 0.6));
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 30px;
  font-size: 13px;
  text-align: center;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.main {
  columns: 1;
}

.main .home {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 1400px) {
  body {
    padding: 15px;
  }
  
  .main-wrapper {
    padding: 30px 50px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0;
    font-size: 18px;
  }
  
  .wrapper {
    width: 100%;
    border-radius: 0;
    margin: 0;
  }
  
  .main-wrapper {
    padding: 15px;
  }
  
  /* Make logo fill screen width on mobile */
  .logo-container {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 15px;
  }
  
  .main-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    border-radius: 0;
    padding: 15px 10px;
    margin: 0;
    width: 100%;
  }
  
  .nav-container {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  
  .nav-link {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  button {
    width: 90%;
    font-size: 18px;
    padding: 15px;
    margin: 0 auto;
    display: block;
    padding:4px;
  }
  
  .nav-btn {
    margin: 0;
  }
  
  .title, .title3 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  /* Two-column image gallery on mobile */
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .gallery-wide {
    grid-column: span 1;
  }
  
  .gallery-item img {
    height: auto;
    object-fit: cover;
  }
  
  .photo-examples {
    gap: 15px;
  }
  
  /* Two-column photo examples on mobile */
  .photo-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .photo-example-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .photo-label {
    font-size: 14px;
    margin-top: 8px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 25px;
  }
  
  .amount {
    font-size: 48px;
  }
  
  cardtitle {
    font-size: 24px;
  }
  
  /* Fix contact section to prevent cutoff */
  .contact2 {
    padding: 40px 5%;
    overflow-x: hidden;
  }
  
  .contact2 p {
    font-size: 18px;
  }
  
  /* Fix social links to fit within screen */
  .social-links {
    gap: 10px;
    padding: 0 10px;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .social-link {
    flex: 0 0 auto;
  }
  
  .social-link img {
    max-height: 50px;
    width: auto;
  }
  
  .footer {
    font-size: 11px;
    padding: 20px;
  }
  
  .ourmission2, .samples2, .moresamples2, .uploadyourpics2, .ratesandpayment2 {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .shape-1, .shape-2, .shape-3, .shape-4 {
    display: none;
  }
    
    .moresamples img {border-radius: 24px; margin:10px;max-width:300px;}
  
  .title, .title3 {
    font-size: 28px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .mission-content p, .samples2 p, .moresamples2 p, .uploadyourpics2 p, .ratesandpayment2 > p {
    font-size: 16px;
  }
  
  /* Ensure 2-column layout even on smallest screens */
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .gallery-item img {
    height: auto;
  }
  
  .photo-examples {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .photo-example-item img {
    height: auto;
  }
  
  .photo-label {
    font-size: 12px;
  }
  
  .pricing-content {
    font-size: 16px;
  }
  
  .feature span {
    font-size: 14px;
  }
}

/* Extra small devices - ensure nothing gets cut off */
@media (max-width: 360px) {
  .social-links {
    gap: 8px;
  }
  
  .social-link img {
    max-height: 45px;
  }
  
  button {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .gallery-item img {
    height: 100px;
  }
  
  .photo-example-item img {
    height: 130px;
  }
}

/* Scroll animations enhancement */
@supports (animation-timeline: view()) {
  .ourmission2, .samples2, .moresamples2, .uploadyourpics2, .ratesandpayment2, .contact2, .pricing-card {
    animation: fade-in-visible linear forwards;
    animation-timeline: view(block);
    animation-range: entry 0% cover 40%;
  }
}
