/* Global layout and color rules for The Round Room */

/* Force site background red and all text white */
:root {
	--rr-bg: #6d2430;
	--rr-text: #f1eae2; /* white */
	--rr-muted: rgba(255,255,255,0.85);
	--rr-link: #ffecec; /* slightly warm link color */
	--rr-link-hover: #fff5f5;
}





@font-face {
	font-family: 'Dream Avenue';
	src: url(fonts/Dream_Avenue_Regular.otf);
	font-weight: normal;
	font-style: normal;
}



html, body {
	margin: 0;	
	font-family: 'Satoshi', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
	letter-spacing: 0rem;
}

h1 {
	font-family: 'Satoshi', sans-serif;
}

h2 {
	font-family: sans-serif; /*'Dream Avenue', serif;*/
	font-size: 2.5rem;
}

h3 {
	font-family: 'Satoshi', sans-serif;
}


a {
	color: var(--rr-link);
	text-decoration: underline;
}

a:hover,
a:focus {
	color: var(--rr-link-hover);
}

/* Buttons and form controls: ensure text is white and controls are contrasted */
button, input[type="button"], input[type="submit"], .btn {
	background-color: transparent;
	color: var(--rr-text);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	cursor: pointer;
}

input, textarea, select {
	background: rgba(255,255,255,0.04);
	color: var(--rr-text);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 0.5rem;
	border-radius: 4px;
}

/* Images: if images have transparent or light areas, add subtle border to separate from red */
img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 1px solid rgba(255,255,255,0.06);
}



/* Accessibility: focus outlines must be visible */
:focus {
	outline: 3px solid rgba(255,255,255,0.16);
	outline-offset: 2px;
}

/* Muted text for secondary info */
.muted {
	color: var(--rr-muted);
}

/* Headings weight */
h1, h2, h3, h4 {
	font-weight: 600;
	margin: 0 0 0.5rem 0;
}

/* Make sure form placeholders are visible */
::placeholder {
	color: rgba(255,255,255,0.7);
}

/* Small print at footer */
footer {
	padding: 1rem 0;
	opacity: 0.95;
}

/* Utility: center content vertically if needed */
.center-vh {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* end of global styles */

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--rr-bg);
    border-bottom: 3px solid var(--rr-text);
    z-index: 1000;
}

.top-nav .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
}

.top-nav .logo {
	color: var(--rr-text);
	display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 1.23rem;
    text-decoration: none;
}
.top-nav .h1 {
	padding: 0;
	margin: 0;
}
.top-nav .logo img {
	display: inline-block;
	width: 61.5px;
	height: 61.5px;
	object-fit: contain;
	border: none;
	margin: auto;
}
.top-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 20px;
}
.top-nav .nav-links li {
    margin-left: 1.5rem;
}
.top-nav .nav-links a {
    text-decoration: none;
    color: var(--rr-text);
    font-weight: 500;
}
.top-nav .nav-links a:hover,
.top-nav .nav-links a:focus {
  color: var(--rr-link-hover);
}

.nav-toggle {
	display: none;
}

.bar1, .bar2, .bar3 {
	width: 30px;
	height: 2.5px;
	background-color: var(--rr-text);
	margin: 6px 0;
	transition: 0.4s;
}
.change .bar1 {
  transform: translate(0, 8.5px) rotate(-45deg);
  background-color: var(--rr-bg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -8.5px) rotate(45deg);
  background-color: var(--rr-bg);
}


.section-s {
	display: flex;
	flex-direction: row;
	justify-content: flex-start; /* align items next to each other without extra space */
	gap: 0; /* remove flex gap */
	padding: 0rem 1rem  ;
	padding-top: 40px;
	padding-bottom: 30px;
	background-color: var(--rr-text);
	color: var(--rr-bg);
}
.section-ss {
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* align items next to each other without extra space */
	gap: 0; /* remove flex gap */
	padding: 0rem 1rem  ;
	padding-top: 40px;
	padding-bottom: 30px;
	background-color: var(--rr-text);
	color: var(--rr-bg);
}

.ss {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.section-line {
	/* Divider line with --rr-bg color, centered with side margins */
	width: 95%;
	max-width: 95%;
	height: 2px;
	background-color: var(--rr-bg);

	border-radius: 1px;
}

.section-line-w {
	/* Divider line with --rr-bg color, centered with side margins */
	width: 95%;
	max-width: 95%;
	height: 2px;
	background-color: var(--rr-text);

	border-radius: 1px;
}

#osimg {
	flex: 0 0 60%;
	min-width: 600px;
	height: 600px;
	overflow: hidden;
}

video {
	padding-top: 66px;
	width: 100%;
	height: 300px;
	object-fit: fill;
}

.section-m {
	display: flex;
	flex-direction: row;
	justify-content: flex-start; /* align items next to each other without extra space */
	gap: 0; /* remove flex gap */
	padding: 0rem 1rem  ;
	padding-top: 40px;
	padding-bottom: 30px;
	border-bottom: 3px solid var(--rr-text);
	background-color: var(--rr-bg);
	color: var(--rr-text);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 1rem;
}
.menu-item {
	max-width: 400px;
	border: 2px solid var(--rr-text);
	transition: background-color 0.3s ease;
	overflow: hidden;
	padding: 0;
	box-sizing: border-box;
	margin: -1px 0 0 -1px;
}
.menu-item-w {
	max-width: 400px;
	border: 3px solid var(--rr-bg);
	transition: background-color 0.3s ease;
	overflow: hidden;
	padding: 0; 
	box-sizing: border-box;
	margin: -2px 0 0 -2px;
}

.menu-item img, .menu-item-w img {
  	object-fit: cover;
  	transition: transform 0.3s ease;
}

.menu-item:hover {
	background-color: var(--rr-text);
}
.menu-item-w:hover {
	background-color: var(--rr-bg);
}

.menu-item:hover img, .menu-item-w:hover img {
	transform: scale(1.1);
}

.menu-p {
	display: none;
	margin-top: 1rem;
	text-align: center;
	font-size: 1.1rem;
	color: var(--rr-text);
}
.menu-item-p, .menu-item-p-w {
	border: none;
	padding: none;

}
.menu-item-p h3 {
	float: left;
	margin-left: 0.5rem;
	margin-top: 1rem;
}
.menu-item-p-w h3 {
	float: left;
	margin-left: 0.5rem;
	margin-top: 1rem;
	color: var(--rr-bg);
}


@media (max-width: 970px) {
	.nav-toggle {
		display: inline-block;
		cursor: pointer;
		z-index: 1200;
	}
	.top-nav .nav-links {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 80%;
		max-width: 320px;
		background-color: var(--rr-text);
		border-right: 2px solid var(--rr-bg);
		transform: translateX(-110%);
		transition: transform 320ms cubic-bezier(.2,.9,.2,1);
		padding-top: 72px; 
		gap: 1.25rem;
		padding-left: 1rem;
		box-sizing: border-box;
		z-index: 1150;
	}
	.top-nav .nav-links a {
		color: var(--rr-bg);
	}


	.top-nav .nav-links.active {
		transform: translateX(0);
	}

	.top-nav .logo {
		position: fixed;
		left: 50%;
		transform: translateX(-50%);
		width: max-content;
		margin: auto;
		font-size: 0.95rem;
	}

	.top-nav .logo h1 {
		display: none;
	}

	.top-nav .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1rem;
	}

	.top-nav .nav-links li { margin-left: 0; }

	.top-nav .nav-links a {
		display: block;
		padding: 0.5rem 0;
		font-size: 1.05rem;
	}

	.section .ss {
		flex-direction: column;
	}

	#osimg {
		min-width: 100%;
		height: 400px;
		margin-top: 1rem;
	}
	.menu {
		display: none;
	}
	.menu-p {
		display: flex;
		flex-direction: column;
	}
	.section-m, .section-s {
		flex-direction: column;
	}


}