/*
Theme Name: Indifferent 25 - twentytwentyfive
Theme URI: http://example.com/twentytwentyfour-child/
Description: Twenty Twenty-Five Child Theme
Author: Soda Bicarbona
Author URI: 
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour-child
*/

:root{
    
    /** 1 **/

	--primary-text-color: #f9f9f9;
	--primary-bg-color: #fff;

	/** 2 **/
	--secondary-text-color: #a6a6a6;
	--secondary-bg-color: #262626;

	/** 3 **/
	/**	--tertiary-text-color: #0D0D0D; **/
	--tertiary-text-color: #0d0d0d;

	--tertiary-bg-color: #0d0c09;

	--accent-bg-color: #f5b82e;
	--accent-text-color: #f5b82e;
	--accent-fade-bg-color: #f7cb52;
}



/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 0px !important;
	outline-style: none;
}



.wp-admin {
	color: #0d0c09;
}

body{
    background: var(--primary-bg-color);
}


.wp-block-uagb-image figure {
	display: flex;
	justify-content: center;
}

.wp-block-uagb-image__figure img {
  color: red; /* alebo akúkoľvek farbu */
}



 /* Custom Review Form Styling */
.acf-form-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.acf-form .acf-field {
	margin-bottom: 1.5rem;
}

.acf-form .acf-label label {
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
	display: block;
}

.acf-form .acf-input input,
.acf-form .acf-input textarea,
.acf-form .acf-input select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.acf-form .acf-input input:focus,
.acf-form .acf-input textarea:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.acf-form .acf-submit input[type="submit"] {
	background: #0073aa;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.acf-form .acf-submit input[type="submit"]:hover {
	background: #005a87;
}

/* Custom Gallery Uploader Styling */
.cgu-upload-area {
	border: 2px dashed #ddd;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
	transition: border-color 0.3s ease;
	margin-bottom: 1rem;
}

.cgu-upload-area:hover,
.cgu-upload-area.dragover {
	border-color: #0073aa;
}

.cgu-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.cgu-image-preview {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	background: white;
}

.cgu-image-preview img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.cgu-description {
	width: 100%;
	padding: 8px;
	border: none;
	border-top: 1px solid #ddd;
	font-size: 12px;
	resize: vertical;
}