@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html {
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  font-size: 100%;
  line-height: 175%;
  margin: 0 15% 0;
  background: #d2dc9d url(Flowerlogo-real.png) no-repeat center 50px fixed;
background-size: contain;
background-color: #d2dc9d;
opacity: 0.9;
}
header {
font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  margin-top: 0;
font-style: normal;
  padding: 3em 1em 2em 1em;
  text-align: center;
  background-color: rgba(255,255,255,.5);

}

section{
	display: grid;
	place-items: center;
	align-contenet: center;
	min-height: 100vh;
}

a {
  text-decoration: none;
}
a:link {
  color: #939;
}
a:visited {
  color: #937393;
}
a:focus, a:hover {
  color: #c700f2;
  background-color: #fff;
}
a:active {
  color: #f0f;
  background-color: #fff;
}

h1 {
  font: bold 1.5em Georgia, serif;
	font-size: 1em;
  text-shadow: .05em .05em .1em lightslategray;
  color: #939;
}
h2 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: .5em;
  text-align: center;
  color: #c60;
}


dt {
  font-weight: bold;
}
strong {
  font-style: italic;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#info p {
  font-style: italic;
}
.price {
  font-family: Georgia, serif;
  font-style: italic;
}
p.warning, sup {
  font-size: small;
}
.label {
  font-weight: bold;
  font-variant: small-caps;
  font-style: normal;
}

h2 + p {
  text-align: center;
  font-style: italic;
}
footer{
	text-align: bottom;
font-size: 40px;
	
}
img {
	border-style: solid;
	border-color: black;
border-width: thin medium thick;
    width: auto%; /* or set a fixed width */
    height: auto; /* or set a fixed height */
    object-fit: contain; /* or cover */
}

nav ul li a {
  font-size: 1.2rem; /* Relative to root font size */
  /* or */
  font-size: 1.2em;  /* Relative to parent font size */
}
link{}

  #photos {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        #photoBox {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        #photoBox img {
            max-width: 300px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* Make images darker than background */
            filter: brightness(0.8) contrast(1.1);
        }

        #photoBox img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }
	#photoBox img.enlarged {
            transform: scale(1.5);
            z-index: 10;
            position: relative;
            cursor: pointer;
        }

        /* For smaller screens, stack images vertically */
        @media (max-width: 768px) {
            #photoBox {
                flex-direction: column;
            }
            
            #photoBox img {
                max-width: 90%;
            }
        }
.ad-section {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.ad-section::before {
  content: "Advertisement";
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

/* Responsive ads */
.adsbygoogle {
  display: block;
  min-height: 250px; /* Prevents layout shift */
}

.instagram-text {
            font-size: 4rem;
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-weight: 900;
            color: red;
            text-shadow: 
                4px 4px 0px #666,
                8px 8px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: -40px;
        }
        
        /* Alternative with more dramatic shadow */
        .instagram-text:hover {
            text-shadow: 
                4px 4px 0px #666,
                8px 8px 0px #999,
                12px 12px 15px rgba(0, 0, 0, 0.4);
            transition: text-shadow 0.3s ease;
        }

.hidden{
	opacity: 0;
transition: all 1.5s;
}
.show{
 opacity: 1;
}