-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
169 lines (148 loc) · 6.15 KB
/
Copy pathabout.html
File metadata and controls
169 lines (148 loc) · 6.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Fellowship Event Hall – About</title>
<link rel="stylesheet" href="/styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
crossorigin="anonymous" />
<link rel="icon" type="image/x-icon" href="sourcefiles/logo.ico" />
<style>
/* ===== Cloudy Blue Theme (Unified with Home & Events) ===== */
.lobster-text { font-family:'Lobster',cursive; color:var(--head); }
main { padding:0 1rem; }
/* ===== Section / Card Styles ===== */
section {
max-width:980px;
margin:2rem auto;
background:rgba(255,255,255,.86);
backdrop-filter:blur(5px);
border:1px solid rgba(147,197,253,.25);
border-radius:var(--radius);
box-shadow:var(--shadow);
padding:1.5rem;
}
section h2 { text-align:center; margin:0 0 1rem; color:var(--head); }
/* ===== Gallery ===== */
.venue-images {
display:flex; flex-wrap:wrap; gap:1rem; justify-content:center;
}
.venue-images img {
display:block; width:100%; max-width:460px; height:auto;
border-radius:14px;
box-shadow:0 10px 26px rgba(13,37,90,.16);
transition:transform .25s ease, box-shadow .25s ease;
}
.venue-images img:hover {
transform:translateY(-2px) scale(1.01);
box-shadow:0 18px 36px rgba(13,37,90,.22);
}
/* ===== Map ===== */
.map-container {
position:relative; width:100%; padding-bottom:75%; height:0; margin:1rem 0;
border-radius:14px; overflow:hidden; box-shadow:0 10px 26px rgba(13,37,90,.16);
}
.map-container iframe {
position:absolute; inset:0; width:100%; height:100%; border:0;
}
/* ===== Social Buttons ===== */
.socials-wrap { display:flex; justify-content:center; gap:.8rem; flex-wrap:wrap; }
.btn {
display:inline-flex; align-items:center; gap:.45rem;
padding:.7rem 1.05rem; border-radius:999px; color:#fff;
background:linear-gradient(135deg,var(--accent-start),var(--accent-end));
box-shadow:0 10px 22px rgba(60,110,220,.25);
transition:transform .18s ease, box-shadow .18s ease, filter .2s ease;
}
.btn:hover {
transform:translateY(-2px);
box-shadow:0 16px 30px rgba(60,110,220,.28);
filter:saturate(1.05);
}
.btn:focus-visible { outline:2px solid var(--ring); outline-offset:3px; }
</style>
</head>
<body>
<div id="navbar-placeholder"></div>
<main>
<section id="about-header" class="lobster-text">
<h1>About Fellowship Event Hall</h1>
<p id="about-sub">Gentle light, open space, and a smooth experience for every event.</p>
</section>
<section id="about-content" class="slide-in">
<p style="color:var(--ink-2)">At Fellowship Event Hall, we believe every gathering deserves elegance and care. From intimate celebrations to grand weddings, our venue provides the perfect setting for unforgettable memories.</p>
<p style="color:var(--ink-2)">Our dedicated team ensures that your event runs smoothly, offering a welcoming atmosphere and professional support from start to finish.</p>
</section>
<section id="venue-gallery" class="slide-in">
<h2>Our Venue</h2>
<div class="venue-images">
<img src="sourcefiles/fellowship2img.jpg" alt="Venue Image 1" class="slide-in" />
<img src="sourcefiles/fellowshipimg.jpg" alt="Venue Image 2" class="slide-in" />
</div>
</section>
<section id="location" class="slide-in">
<h2>Find Us</h2>
<div class="map-container">
<iframe src="https://www.google.com/maps?q=2875+Winder+Hwy,+Dacula,+GA+30019&output=embed"
allowfullscreen loading="lazy"></iframe>
</div>
<p style="text-align:center;font-size:.95rem;color:var(--ink-2);">
2875 Winder Hwy, Dacula, GA 30019
</p>
</section>
<section id="socials" class="slide-in" style="text-align:center;">
<h2>Follow Us</h2>
<div class="socials-wrap">
<a href="https://www.facebook.com/bisericasfantamariadacula" target="_blank" class="btn">
<i class="fab fa-facebook-f"></i> Facebook
</a>
<a href="https://events.saintmaryro.org" target="_blank" class="btn">
<i class="fab fa-instagram"></i> Instagram
</a>
</div>
</section>
</main>
<div id="footer-placeholder"></div>
<script>
// Navbar & footer loader
fetch("/sourcefiles/navbar.html").then(r=>r.text())
.then(html=>document.getElementById("navbar-placeholder").innerHTML=html);
fetch("/sourcefiles/footer.html").then(r=>r.text())
.then(html=>document.getElementById("footer-placeholder").innerHTML=html);
// Slide-in fade-in animation testing changes
(function(){
const items=[...document.querySelectorAll('.slide-in')];
if(!items.length)return;
const io=new IntersectionObserver((entries,obs)=>{
entries.forEach(e=>{
if(!e.isIntersecting)return;
const i=items.indexOf(e.target);
e.target.style.transitionDelay=(i*90)+'ms';
requestAnimationFrame(()=>{
e.target.classList.add('visible');
obs.unobserve(e.target);
});
});
},{threshold:0.12,rootMargin:'0px 0px -10% 0px'});
items.forEach(el=>io.observe(el));
})();
// Personal greeting if name saved
(function(){
try {
const name = localStorage.getItem('userName');
if (!name) return;
const header = document.getElementById('about-header');
const sub = document.getElementById('about-sub');
// Insert a personalized greeting line above the sub text
const greet = document.createElement('p');
greet.textContent = `Hi ${name}, at Fellowship Event Hall we’re excited to help make your event unforgettable.`;
header.insertBefore(greet, sub);
} catch(_) {}
})();
</script>
<noscript><style>.slide-in{opacity:1!important;transform:none!important;}</style></noscript>
</body>
</html>