body {
  font-family: 'Montserrat', Helvetica, sans-serif;
}

.montserrat-<uniquifier> {
 font-family: "Montserrat", sans-serif;
 font-optical-sizing: auto;
 font-weight: <weight>;
 font-style: normal;
}
p{font-family: 'Montserrat', sans-serif;}
h3{font-family: 'Montserrat', sans-serif;}

/* NAVBAR BASE */
.navbar-container {
  display: flex;
  justify-content: space-between; /* brand left, links right */
  align-items: center;
}

.btn.btn-success {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn.btn-success:hover {
  background-color: #555555 !important;
  border-color: #555555 !important;
}

.navbar-nav {
  display: flex;   /* horizontal links on desktop */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin-left: 20px;
}


/* BRAND */
.navbar-brand {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
}

/* LINKS */
.navbar-nav {
  display: flex;      /* horizontal on desktop */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin-left: 20px;
}

.navbar-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: Montserrat, helvetica, sans-serif;
}

.navbar-nav a:hover,
.navbar-nav a:active {
  color: #e0e0e0;  /* light grey hover */
}

/* HAMBURGER */

/* MOBILE */
@media screen and (max-width: 768px) {
  .navbar-nav {
    display: none;           /* hide links initially */
    flex-direction: column;  
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 50px;
    right: 0;
    padding: 10px 0;
  }

  .navbar-nav li {
    margin: 10px 20px;
    text-align: right;
  }}


.bgimage {background-image: url("http://maevekellydesign.com/images/maeve-kelly-design-hero.jpg");
        background-position: no-repeat center center ;
        background-size: cover;
        padding-top:-1200px;
        padding-bottom:1000px;}

/* ================== */
/* MAIN TEXT */
/* ================== */
.fronttext {
  margin-top: 40px; /* spacing below hero */
  padding: 20px;
  font-family: Montserrat, helvetica, sans-serif;
}

.fronttext p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  font-family: Montserrat, helvetica, sans-serif;
}

/* ================== */
/* IMAGE GRID */
/* ================== */
.icon {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}


/* ================== */
/* GLOBAL LINK STYLES */
/* ================== */
a, a:link, a:visited {
  color: #000;           /* default black */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover, a:active {
  color: #e0e0e0;           /* grey on hover/click */
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.headline {font-size: calc(3em + 3vw);  text-align:center; font-family: Montserrat, helvetica, sans-serif; color: #ffffff; font-weight: 200; font-style: normal; padding:20px;}
/* ================== */
/* TYPOGRAPHY & CONTENT */
/* ================== */


.EachImage {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* optional spacing between columns */
}

.image-row > .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: stretch; /* stretch to match tallest */
}

.grid-img {
  flex: 1 1 auto;      /* grow/shrink to fill available space */
  width: 100%;
  object-fit: cover;    /* fill space without distortion */
}

.gallery-img {
  width: 100%;                        /* fills the column */
  height: auto;                        /* keeps aspect ratio */
  border-radius: 12px;                 /* rounded edges */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* subtle shadow */
  display: block;                      /* ensures proper spacing */
  margin: 0 auto 10px auto;            /* centers image and adds spacing below */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.contact-info p {
  margin-bottom: 1.2rem;  /* more space between lines */
  line-height: 1.8;       /* taller spacing */
  font-size: 1.1rem;      /* slightly larger text */
  letter-spacing: 0.3px;  /* tiny bit of breathing room */
}

.contact-info strong {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.contact-info {
  padding-left: 30px;  /* space away from the edge */
}

.a {
  text-decoration: underline;              /* enable underline */
  text-decoration-thickness: 1px;          /* very thin line */
  text-underline-offset: 3px;              /* small gap from text */
  text-decoration-color: rgba(0, 0, 0, 0.4); /* subtle, semi-transparent */
  transition: text-decoration-color 0.3s ease; /* smooth hover effect */
}

.img-container {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-container {
  height: 250px;                /* same height for all images */
  overflow: hidden;              /* crop excess */
  border-radius: 12px;           /* rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




