@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
	 --goldenrod: goldenrod;
	}


body {
    font-family: Poppins, sans-serif;
}

.text-gold{
	color:var(--goldenrod);
}
.btn-gold{
	background-color:var(--goldenrod);
	color:white;
	border:1px solid var(--goldenrod);
}

.btn-gold:hover{
	border:1px solid var(--goldenrod);
		background-color:transparent;
	color:var(--goldenrod);
}

.hero {
    min-height: 70vh;
}

.navbar-brand {
    letter-spacing: 1px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}


/* ===== RECENT WORK MARQUEE ===== */
.recent-work-marquee {
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1rem;                      /* spacing between images */
    min-width: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 200px;                   /* fixed width for all items */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: block;
}

.marquee-item:hover {
    transform: scale(1.05);
}

.marquee-item img {
    width: 100%;
    height: 150px;                  /* fixed height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive – smaller items on mobile */
@media (max-width: 768px) {
    .marquee-item {
        width: 150px;
    }
    .marquee-item img {
        height: 120px;
    }
}


/* ===== CONTACT CTA SECTION ===== */

.contact-cta-bg {
    z-index: 0;
}

.contact-cta-overlay {
    z-index: 1;
}

.contact-cta .container {
    z-index: 2;
}

.contact-info a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info a:hover {
    color: #ffc107 !important;   /* match warning colour */
    transform: translateX(5px);
}

.card {
    border-radius: 1rem;
}

.form-control-lg {
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .contact-cta .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.contact-info a,
.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #e6e6e6;
  color: #000033;
  font-weight: 600;
  flex-shrink: 0;      /* prevents icon from shrinking */
}
